UNPKG

169 BTypeScriptView Raw
1#!/usr/bin/env node
2export interface ICompilerProxy {
3 send(data: {}): Promise<{}>;
4 close(): void;
5}
6export default function start(cliArgs?: {}): ICompilerProxy;