UNPKG

@btfuse/core

Version:

A native-first framework for building hybdrid web-native applications

8 lines (7 loc) 249 B
export type TNativeCallbackFunction = (data: string) => void; declare global { interface Window { __btfuse_callbacks: Map<string, TNativeCallbackFunction>; __btfuse_doCallback: (callbackID: string, data: string) => void; } }