UNPKG

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