1 | import { BuildContext } from './util/interfaces';
|
2 | import { getNgModules, GeneratorOption, GeneratorRequest } from './generators/util';
|
3 | export { getNgModules, GeneratorOption, GeneratorRequest };
|
4 | export declare function processPageRequest(context: BuildContext, name: string, commandOptions?: {
|
5 | module?: boolean;
|
6 | constants?: boolean;
|
7 | }): Promise<string[]>;
|
8 | export declare function processPipeRequest(context: BuildContext, name: string, ngModulePath: string): Promise<void>;
|
9 | export declare function processDirectiveRequest(context: BuildContext, name: string, ngModulePath: string): Promise<void>;
|
10 | export declare function processComponentRequest(context: BuildContext, name: string, ngModulePath: string): Promise<void>;
|
11 | export declare function processProviderRequest(context: BuildContext, name: string, ngModulePath: string): Promise<void>;
|
12 | export declare function processTabsRequest(context: BuildContext, name: string, tabs: any[], commandOptions?: {
|
13 | module?: boolean;
|
14 | constants?: boolean;
|
15 | }): Promise<void>;
|
16 | export declare function listOptions(): GeneratorOption[];
|