webpd
Version:
WebPd is a compiler for audio programming language Pure Data allowing to run .pd patches on web pages.
12 lines (11 loc) • 439 B
TypeScript
import { AbstractionLoader } from '../../build';
/**
* Helper to build an abstraction loader from a root path on the file system.
* The returned loader will :
* - use the root path to resolve relative paths for abstractions.
* - suffix all abstraction names with .pd if they don't already have an extension.
*
* @param rootUrl
* @returns
*/
export declare const makeFsAbstractionLoader: (rootDirPath: string) => AbstractionLoader;