/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { virtualFs } from '../virtual-fs'; export interface WorkspaceHost { readFile(path: string): Promise; writeFile(path: string, data: string): Promise; isDirectory(path: string): Promise; isFile(path: string): Promise; } export declare function createWorkspaceHost(host: virtualFs.Host): WorkspaceHost;