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