@meframe/core
Version:
Next generation media processing framework based on WebCodecs
19 lines (18 loc) • 557 B
TypeScript
import { Plugin } from 'vite';
export interface MeframePluginOptions {
/**
* Virtual path prefix for worker files
* Workers will be accessible at /{workerPath}/xxx.worker.js
* Must match the workerPath in Meframe global config
* @default 'meframe-workers'
*/
workerPath?: string;
/**
* Enable verbose logging
* @default false
*/
verbose?: boolean;
}
export declare function meframePlugin(options?: MeframePluginOptions): Plugin;
export default meframePlugin;
//# sourceMappingURL=vite-plugin.d.ts.map