@nstudio/angular
Version:
Angular Plugin for xplat
15 lines (14 loc) • 607 B
TypeScript
import { Tree, Rule } from '@angular-devkit/schematics';
export declare function runSchematic(schematicName: string, options: any, tree: Tree): Promise<import("@angular-devkit/schematics/testing").UnitTestTree>;
export declare function callRule(rule: Rule, tree: Tree): Promise<import("@angular-devkit/schematics/src/tree/interface").Tree>;
export interface AppConfig {
appName: string;
appModule: string;
}
export interface LibConfig {
name: string;
module: string;
barrel: string;
}
export declare function getAppConfig(): AppConfig;
export declare function getLibConfig(): LibConfig;