f2d7493c2a
* stuff copied over, but aint workin * various fixes * vscode settings * trigger deploy * trigger deploy
11 lines
378 B
TypeScript
11 lines
378 B
TypeScript
/**
|
|
* Defines the expected contract of the host application bound object.
|
|
*/
|
|
export type IRawBridge = {
|
|
GetBindingsMethodNames: () => Promise<string[]>
|
|
RunMethod: (methodName: string, requestId: string, args: string) => Promise<string>
|
|
ShowDevTools: () => Promise<void>
|
|
OpenUrl: (url: string) => Promise<void>
|
|
GetCallResult: (requestId: string) => Promise<string>
|
|
}
|