UNPKG

z-web-audio-stream-cli

Version:

CLI tool for deploying Web Audio Stream worklet files with instant playback support

23 lines 608 B
export interface DeployOptions { dest?: string; filename?: string; } export interface CheckResult { passed: boolean; message: string; fix?: string; } /** * Deploy audio worklet processor to a directory */ export declare function deployWorklet(options?: DeployOptions): Promise<void>; /** * Check project setup for Web Audio Stream */ export declare function checkSetup(options?: DeployOptions): Promise<CheckResult[]>; declare const _default: { deployWorklet: typeof deployWorklet; checkSetup: typeof checkSetup; }; export default _default; //# sourceMappingURL=index.d.ts.map