UNPKG

tav-media

Version:

Cross platform media editing framework

21 lines (20 loc) 544 B
export { FileSystem } from '../io/file-system'; /** * Options for the TAVMediaWASM. */ export interface TAVWasmOptions { /** * A base url where the preload files should related to */ baseUrl?: string; /** * A function to get url of the wasm related file */ locateFile?: (wasmFileName: string) => string; [otherProp: string]: any; } /** * Initialize the TAVMediaWasm. * @param wasmModule The TAVWasmOptions object */ export declare function initializeWasm(wasmModule: TAVWasmOptions): Promise<void>;