file-system-host.d.ts 464 B

1234567891011121314
  1. /**
  2. * @license
  3. * Copyright Google Inc. All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. import { virtualFs } from '@angular-devkit/core';
  9. /**
  10. * @deprecated Please use a Host directly instead of this class. This will be removed prior to 1.0.
  11. */
  12. export declare class FileSystemHost extends virtualFs.ScopedHost<{}> {
  13. constructor(dir: string);
  14. }