c119c44c13
When this is merged https://gitlab.com/ligolang/ligo-web-ide/ will be marked as deprecated. This MR does not hook up the webide build to the main CI. The CI integration will come in a subsequent MR for the sake of making review easier.
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
export interface FileStorage {
|
|
read(filename: string): Promise<string>;
|
|
write(filename: string, content: string): Promise<void>;
|
|
}
|
|
|
|
export class FileNotFoundError extends Error {}
|