UNPKG

413 BTypeScriptView Raw
1import { FileReference, PathReference } from '../filesystem';
2export interface ModuleDeclaration {
3 source: string;
4 symbol: string;
5 alias?: string;
6}
7export interface Project {
8 basePath: PathReference;
9 tsconfig: FileReference;
10 identifier?: string | number;
11 webpack?: FileReference;
12 workingPath?: PathReference;
13 environment?: string;
14 applicationModule?: ModuleDeclaration;
15}