Skip to content

Commit 10c8571

Browse files
author
Angular Builds
committed
cf27958 feat(@angular-devkit/schematics): add a tslint fix task
1 parent 046bb84 commit 10c8571

File tree

3 files changed

+72
-1
lines changed

3 files changed

+72
-1
lines changed

node/testing/index.d.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/// <reference types="node" />
2+
/**
3+
* @license
4+
* Copyright Google Inc. All Rights Reserved.
5+
*
6+
* Use of this source code is governed by an MIT-style license that can be
7+
* found in the LICENSE file at https://angular.io/license
8+
*/
9+
import * as fs from 'fs';
10+
import { Path, virtualFs } from '../../src';
11+
/**
12+
* A Sync Scoped Host that creates a temporary directory and scope to it.
13+
*/
14+
export declare class TempScopedNodeJsSyncHost extends virtualFs.ScopedHost<fs.Stats> {
15+
protected _sync: virtualFs.SyncDelegateHost<fs.Stats>;
16+
protected _root: Path;
17+
constructor();
18+
readonly files: Path[];
19+
readonly root: Path;
20+
readonly sync: virtualFs.SyncDelegateHost<fs.Stats>;
21+
}

node/testing/index.js

Lines changed: 50 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uniqueId

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Thu Apr 05 2018 01:32:35 GMT+0000 (UTC)
1+
Thu Apr 05 2018 01:39:22 GMT+0000 (UTC)

0 commit comments

Comments
 (0)