Skip to content

Commit

Permalink
fix(angular): adds missing types in the schemes of remote and `host…
Browse files Browse the repository at this point in the history
…` generators (#11428)
  • Loading branch information
IKatsuba authored Aug 19, 2022
1 parent 15d8325 commit 9294b64
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/angular/src/generators/host/schema.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import { Linter } from '@nrwl/linter';
import { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
import type { Styles } from '../utils/types';

type AngularLinter = Exclude<Linter, Linter.TsLint>;

export interface Schema {
name: string;
remotes?: string[];
Expand Down
6 changes: 6 additions & 0 deletions packages/angular/src/generators/remote/schema.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import { Linter } from '@nrwl/linter';
import { E2eTestRunner, UnitTestRunner } from '../../utils/test-runners';
import type { Styles } from '../utils/types';

type AngularLinter = Exclude<Linter, Linter.TsLint>;

export interface Schema {
name: string;
host?: string;
Expand Down

0 comments on commit 9294b64

Please sign in to comment.