summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime.ts b/runtime.ts
index 2d8b624bb..6bc09dd89 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