summaryrefslogtreecommitdiff
path: root/types.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-19 05:38:51 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-19 05:39:27 -0400
commit83f436e175643da6d75e1de3fe905b586012bac2 (patch)
treef250b9fdaca68941863caad5c778bccdf45099ca /types.ts
parentaeb85efdad3dd705894386aa9aef5e22db1541b8 (diff)
Command line flags
Diffstat (limited to 'types.ts')
-rw-r--r--types.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/types.ts b/types.ts
new file mode 100644
index 000000000..8631d2c84
--- /dev/null
+++ b/types.ts
@@ -0,0 +1,8 @@
+export type TypedArray = Uint8Array | Float32Array | Int32Array;
+
+export interface ModuleInfo {
+ moduleName?: string;
+ filename?: string;
+ sourceCode?: string;
+ outputCode?: string;
+}