summaryrefslogtreecommitdiff
path: root/js/types.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/types.d.ts')
-rw-r--r--js/types.d.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/types.d.ts b/js/types.d.ts
index 85eda0cd0..110873c6b 100644
--- a/js/types.d.ts
+++ b/js/types.d.ts
@@ -2,10 +2,10 @@
export type TypedArray = Uint8Array | Float32Array | Int32Array;
export interface ModuleInfo {
- moduleName?: string;
- filename?: string;
- sourceCode?: string;
- outputCode?: string;
+ moduleName: string | null;
+ filename: string | null;
+ sourceCode: string | null;
+ outputCode: string | null;
}
// Following definitions adapted from: