UNPKG

229 BTypeScriptView Raw
1/**
2 * @name isWasm
3 * @summary Tests if the input has a WASM header
4 * @description
5 * Checks to see if the input Uint8Array contains a valid WASM header
6 */
7export declare function isWasm(value?: unknown): value is Uint8Array;