blob: 8631d2c8430d5ebdea4a5a9705bc8b3971f18ed3 (
plain)
1
2
3
4
5
6
7
8
|
export type TypedArray = Uint8Array | Float32Array | Int32Array;
export interface ModuleInfo {
moduleName?: string;
filename?: string;
sourceCode?: string;
outputCode?: string;
}
|