/** * Defines the expected contract of the host application bound object. */ export type IRawBridge = { GetBindingsMethodNames: () => Promise RunMethod: (methodName: string, requestId: string, args: string) => Promise ShowDevTools: () => Promise OpenUrl: (url: string) => Promise GetCallResult: (requestId: string) => Promise }