open-codetree / _types /compilerTypes.ts
matt HOFFNER
init
3c3f089
Raw
History Blame
143 Bytes
export interface CompilerStatus {
isReady: boolean;
error: string;
}
export interface CompilerOutput {
code: string;
error: string;
}