1 |
|
2 | import { IProject, IonicContext, IonicEnvironment } from './definitions';
|
3 | import { ProjectDeps } from './lib/project';
|
4 | export * from './definitions';
|
5 | export * from './constants';
|
6 | export * from './guards';
|
7 | export declare function getProject(projectDir: string | undefined, projectName: string | undefined, deps: ProjectDeps): Promise<IProject | undefined>;
|
8 | export declare function generateIonicEnvironment(ctx: IonicContext, pargv: string[], env: NodeJS.ProcessEnv): Promise<{
|
9 | env: IonicEnvironment;
|
10 | project?: IProject;
|
11 | }>;
|