summaryrefslogtreecommitdiff
path: root/types.ts
diff options
context:
space:
mode:
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;
+}