UNPKG

@progress/kendo-angular-schematics

Version:

Kendo UI Schematics for Angular

17 lines (16 loc) 1.09 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Tree } from '@angular-devkit/schematics'; import { Observable } from 'rxjs'; export { addSymbolToMetadata, addDeclarationToModule, addExportToModule, addImportToModule } from './ast-utils'; export { findModule } from './find-module'; export * from './workspace'; export { getAppModulePath } from './bootstrap-module'; export declare const folderName: (options: any) => (name: string) => string; export declare const buildSelector: (options: any) => string; export declare function stringify(json: any): string; export declare function asObservable<T>(thunk: T): Observable<T>; export declare function fileContent(tree: Tree, path: string): string; export declare const parseComplexOptions: (props: string[], options: any) => any;