UNPKG

webpd

Version:

WebPd is a compiler for audio programming language Pure Data allowing to run .pd patches on web pages.

11 lines (10 loc) 339 B
import { Artefacts } from '../../types'; export declare const WEBPD_RUNTIME_FILENAME = "webpd-runtime.js"; export interface Settings { artefacts: Artefacts; } export type GeneratedApp = { [filename: string]: string | ArrayBuffer; }; declare const _default: (artefacts: Artefacts) => Promise<GeneratedApp>; export default _default;