diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-19 05:38:51 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-19 05:39:27 -0400 |
commit | 83f436e175643da6d75e1de3fe905b586012bac2 (patch) | |
tree | f250b9fdaca68941863caad5c778bccdf45099ca /types.ts | |
parent | aeb85efdad3dd705894386aa9aef5e22db1541b8 (diff) |
Command line flags
Diffstat (limited to 'types.ts')
-rw-r--r-- | types.ts | 8 |
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; +} |