elm-native-library/elm-native-js/index.d.ts
2023-01-13 13:57:49 +05:30

10 lines
181 B
TypeScript

type port = any
type config = {
elmModule: () => any,
elmModuleName: string,
flags?: any,
initPorts?: (ports: port) => void,
}
export function start(config: config): void;