mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00

Add dev-setup to figure out links Update development workflow Update package.json and dts-ios Update the iOS declarations grunt is now fine
41 lines
908 B
TypeScript
41 lines
908 B
TypeScript
|
|
declare const enum NCUpdateResult {
|
|
|
|
NewData = 0,
|
|
|
|
NoData = 1,
|
|
|
|
Failed = 2
|
|
}
|
|
|
|
declare class NCWidgetController extends NSObject {
|
|
|
|
static alloc(): NCWidgetController; // inherited from NSObject
|
|
|
|
static new(): NCWidgetController; // inherited from NSObject
|
|
|
|
static widgetController(): NCWidgetController;
|
|
|
|
setHasContentForWidgetWithBundleIdentifier(flag: boolean, bundleID: string): void;
|
|
}
|
|
|
|
declare const enum NCWidgetDisplayMode {
|
|
|
|
Compact = 0,
|
|
|
|
Expanded = 1
|
|
}
|
|
|
|
interface NCWidgetProviding extends NSObjectProtocol {
|
|
|
|
widgetActiveDisplayModeDidChangeWithMaximumSize?(activeDisplayMode: NCWidgetDisplayMode, maxSize: CGSize): void;
|
|
|
|
widgetMarginInsetsForProposedMarginInsets?(defaultMarginInsets: UIEdgeInsets): UIEdgeInsets;
|
|
|
|
widgetPerformUpdateWithCompletionHandler?(completionHandler: (p1: NCUpdateResult) => void): void;
|
|
}
|
|
declare var NCWidgetProviding: {
|
|
|
|
prototype: NCWidgetProviding;
|
|
};
|