mirror of
https://github.com/hariroshan/elm-native-library.git
synced 2024-12-12 12:41:57 +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;
|