/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */import{JsonAstArray,JsonAstNode,JsonAstObject,JsonValue}from'@angular-devkit/core';import{UpdateRecorder}from'@angular-devkit/schematics';exportdeclarefunctionappendPropertyInAstObject(recorder:UpdateRecorder,node:JsonAstObject,propertyName:string,value:JsonValue,indent:number):void;exportdeclarefunctioninsertPropertyInAstObjectInOrder(recorder:UpdateRecorder,node:JsonAstObject,propertyName:string,value:JsonValue,indent:number):void;exportdeclarefunctionremovePropertyInAstObject(recorder:UpdateRecorder,node:JsonAstObject,propertyName:string):void;exportdeclarefunctionappendValueInAstArray(recorder:UpdateRecorder,node:JsonAstArray,value:JsonValue,indent?:number):void;exportdeclarefunctionfindPropertyInAstObject(node:JsonAstObject,propertyName:string):JsonAstNode|null;