elm-native-library/elm-native-js/index.d.ts
2023-01-11 14:44:56 +05:30

11 lines
227 B
TypeScript

declare module "App.bs.js" {
type port = any
type config = {
elmModule: () => any,
elmModuleName: string,
flags?: any,
initPorts?: (ports: port) => void,
}
export function start(config: config): void;
}