a-builder
Version:
a-builder
12 lines (11 loc) • 359 B
TypeScript
export interface IAngularConfigApp {
name?: string;
}
export interface IAngularConfig {
apps: IAngularConfigApp[];
}
export declare class LsAngularApps {
static testPath(path?: string): Promise<string>;
static getAngularJSON(path?: string): Promise<IAngularConfig>;
static mapAppNames(apps: IAngularConfigApp[]): Array<string | number>;
}