mollu-lang-web
Version:
7 lines (6 loc) • 344 B
TypeScript
export declare function setEventListener(listener: (text: string) => void): void;
export declare function setEnvironment(env: 'web' | 'node'): void;
export declare function startRepl(): void;
export declare function endRepl(): void;
export declare function isRepl(): boolean;
export declare function execute(code: string): Promise<void>;