summaryrefslogtreecommitdiff
path: root/js/types.ts
blob: ae8ee1e81dcb3b4bea74d20229e41e852f0f0e81 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
export type TypedArray = Uint8Array | Float32Array | Int32Array;

export interface ModuleInfo {
  moduleName?: string;
  filename?: string;
  sourceCode?: string;
  outputCode?: string;
}