fix(core): fix missing import in 'schema.d.ts'

This commit is contained in:
Ívar Örn Pétursson 2020-12-14 09:59:29 +00:00 committed by Victor Savkin
parent 379e32a1aa
commit 7911a607c2

View File

@ -1,4 +1,6 @@
export interface Schema extends json.JsonObject { import { JsonObject } from '@angular-devkit/core';
export interface Schema extends JsonObject {
projectName: string; projectName: string;
skipFormat: boolean; skipFormat: boolean;
forceRemove: boolean; forceRemove: boolean;