UNPKG

@progress/kendo-angular-schematics

Version:

Kendo UI Schematics for Angular

12 lines (11 loc) 850 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Rule, Tree, SchematicContext } from '@angular-devkit/schematics'; import { Observable } from 'rxjs'; export declare function applyChanges(host: Tree, path: string, changes: any[]): void; export declare function addDeclarationToNgModule(options: any): Rule; export declare function addToPackageJson(options: any): Rule; export type ComponentTemplate = (context: SchematicContext) => Observable<{}>; export declare function withBase(componentTemplate: ComponentTemplate, rules: Rule): any;