UNPKG

418 BTypeScriptView Raw
1// log handlers
2export function warn( message?: any, ...optionalParams: any[] ): void;
3export function error( message?: any, ...optionalParams: any[] ): void;
4export function log( message?: any, ...optionalParams: any[] ): void;
5
6// typed array parameters
7export type TypedArray =
8 Int8Array
9 | Uint8Array
10 | Uint8ClampedArray
11 | Int16Array
12 | Uint16Array
13 | Int32Array
14 | Uint32Array
15 | Float32Array
16 | Float64Array;