UNPKG

@duckdb/duckdb-wasm

Version:
10 lines (9 loc) 287 B
/** An instantiation progress */ export interface InstantiationProgress { startedAt: Date; updatedAt: Date; bytesTotal: number; bytesLoaded: number; } /** An instantiation progress handler */ export type InstantiationProgressHandler = (p: InstantiationProgress) => void;