1import type { ElmPorts } from "./elm/types"
2
3
4export { }
5
6
7declare const Elm: { Brain: ElmMain<ElmPorts> }
8declare const BUILD_TIMESTAMP: string
9
10
11declare module "elm-taskport" {
12 const install: () => void
13 const register: (a: string, b: (arg: any) => any) => void
14}