import * as BrotliWasm from './pkg.node/brotli_wasm';

// Re-export the core API - although this will only work OOTB for node usage.
export * from './pkg.node/brotli_wasm';

declare const promisedValue: Promise<typeof BrotliWasm>;
export default promisedValue;

export type BrotliWasmType = typeof BrotliWasm;