diff --git a/runtime.ts b/runtime.ts index 2d8b624bbe..6bc09dd89e 100644 --- a/runtime.ts +++ b/runtime.ts @@ -19,8 +19,8 @@ import * as deno from "./deno"; const EOL = "\n"; // tslint:disable-next-line:no-any -type AmdFactory = (...args: any[]) => undefined | object; -type AmdDefine = (deps: string[], factory: AmdFactory) => void; +export type AmdFactory = (...args: any[]) => undefined | object; +export type AmdDefine = (deps: string[], factory: AmdFactory) => void; // Uncaught exceptions are sent to window.onerror by v8worker2. // https://git.io/vhOsf