source: trip-planner-front/node_modules/@angular-devkit/core/node/testing/index.d.ts@ 571e0df

Last change on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 682 bytes
RevLine 
[6a3a178]1/**
2 * @license
3 * Copyright Google LLC 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/// <reference types="node" />
9import * as fs from 'fs';
10import { Path, virtualFs } from '../../src';
11/**
12 * A Sync Scoped Host that creates a temporary directory and scope to it.
13 */
14export declare class TempScopedNodeJsSyncHost extends virtualFs.ScopedHost<fs.Stats> {
15 protected _sync?: virtualFs.SyncDelegateHost<fs.Stats>;
16 protected _root: Path;
17 constructor();
18 get files(): Path[];
19 get root(): Path;
20 get sync(): virtualFs.SyncDelegateHost<fs.Stats>;
21}
Note: See TracBrowser for help on using the repository browser.