open-codetree / _types /compilerTypes.ts
matt HOFFNER
init
3c3f089
raw
history blame contribute delete
143 Bytes
export interface CompilerStatus {
isReady: boolean;
error: string;
}
export interface CompilerOutput {
code: string;
error: string;
}