typedraft
Version:
TypeDraft is a superset of typescript with built-in support for DSL extension and literate programming.
11 lines (10 loc) • 396 B
TypeScript
declare global {
function Λ<T>(dsl: string): (...args: any[]) => T;
function context<T>(dsl: string): (...args: any[]) => T;
}
export * from "./core/transcriber";
export * from "./code-object";
export * from "./plug-in";
export * from "./common";
import { ITranscriber } from "./core/transcriber";
export declare function MakeDefaultTranscriber(_module: string): ITranscriber;