mirror of
https://github.com/hariroshan/elm-native-library.git
synced 2025-01-06 03:54:33 +03:00
10 lines
181 B
TypeScript
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;
|