UNPKG

@lue-bird/elm-state-interface-experimental

Version:
13 lines (12 loc) 275 B
export interface ElmPorts { toJs: { subscribe: (callback: (fromElm: any) => void) => void; }; fromJs: { send: (toElm: any) => void; }; } export declare function programStart(appConfig: { ports: ElmPorts; domElement: Element; }): void;