Interfaces
WindowContentRequest
Describes the window asking for content.
Defined in: native-window/native-window-interfaces.ts
Describes the window asking for content.
Properties
android?
optional android?: {
intent?: Intent;
savedInstanceState?: Bundle;
};Defined in: native-window/native-window-interfaces.ts
intent?
optional intent?: Intent;savedInstanceState?
optional savedInstanceState?: Bundle;data?
optional data?: Record<string, any>;Defined in: native-window/native-window-interfaces.ts
NSUserActivity.userInfo on iOS, intent extras on Android.
ios?
optional ios?: {
connectionOptions?: UISceneConnectionOptions;
};Defined in: native-window/native-window-interfaces.ts
connectionOptions?
optional connectionOptions?: UISceneConnectionOptions;isPrimary
isPrimary: boolean;Defined in: native-window/native-window-interfaces.ts
Whether the window is the application's primary window.
window
window: NativeWindow;Defined in: native-window/native-window-interfaces.ts
The window that needs content.
- Previous
- WindowCloseEventData