@await-widget/runtime 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/bridge.d.ts +5 -0
- package/types/prop.d.ts +1 -1
package/package.json
CHANGED
package/types/bridge.d.ts
CHANGED
|
@@ -145,6 +145,9 @@ export declare const Await: {
|
|
|
145
145
|
config: AwaitDefineConfig<Intents, T>,
|
|
146
146
|
): AwaitDefineResult<Intents>;
|
|
147
147
|
};
|
|
148
|
+
export declare const AwaitLaunch: {
|
|
149
|
+
openApp(bundleId: string): any;
|
|
150
|
+
};
|
|
148
151
|
export declare const AwaitEnv: {
|
|
149
152
|
readonly id: string;
|
|
150
153
|
readonly tag: number;
|
|
@@ -153,6 +156,7 @@ export declare const AwaitEnv: {
|
|
|
153
156
|
};
|
|
154
157
|
type AwaitGlobal = typeof Await;
|
|
155
158
|
type AwaitEnvGlobal = typeof AwaitEnv;
|
|
159
|
+
type AwaitLaunchGlobal = typeof AwaitLaunch;
|
|
156
160
|
type AwaitUIGlobal = typeof AwaitUI;
|
|
157
161
|
type AwaitClipboardGlobal = typeof AwaitClipboard;
|
|
158
162
|
type AwaitNetworkGlobal = typeof AwaitNetwork;
|
|
@@ -171,6 +175,7 @@ type SleepGlobal = typeof sleep;
|
|
|
171
175
|
declare global {
|
|
172
176
|
const Await: AwaitGlobal;
|
|
173
177
|
const AwaitEnv: AwaitEnvGlobal;
|
|
178
|
+
const AwaitLaunch: AwaitLaunchGlobal;
|
|
174
179
|
const AwaitUI: AwaitUIGlobal;
|
|
175
180
|
const AwaitClipboard: AwaitClipboardGlobal;
|
|
176
181
|
const AwaitNetwork: AwaitNetworkGlobal;
|