We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d202480 commit 545db06Copy full SHA for 545db06
packages/angular/cli/custom-typings.d.ts
@@ -14,10 +14,11 @@ declare module 'yargs-parser' {
14
}
15
16
declare module 'json-schema-traverse' {
17
- export interface TraverseOptions {
+ import { JsonObject } from '@angular-devkit/core';
18
+ interface TraverseOptions {
19
allKeys?: boolean;
20
- export type TraverseCallback = (
21
+ type TraverseCallback = (
22
schema: JsonObject,
23
jsonPointer: string,
24
rootSchema: string,
@@ -26,7 +27,7 @@ declare module 'json-schema-traverse' {
26
27
parentSchema: string,
28
property: string) => void;
29
- export interface TraverseCallbacks {
30
+ interface TraverseCallbacks {
31
pre?: TraverseCallback;
32
post?: TraverseCallback;
33
0 commit comments