Spaces:
Paused
Paused
File size: 143 Bytes
3c3f089 |
1 2 3 4 5 6 7 8 9 10 |
export interface CompilerStatus {
isReady: boolean;
error: string;
}
export interface CompilerOutput {
code: string;
error: string;
}
|