constants.d.ts 446 B

1234567891011
  1. import { ProjectType } from './definitions';
  2. export declare const ASSETS_DIRECTORY: string;
  3. export declare const ANGULAR_STANDALONE = "angular-standalone";
  4. export declare const PROJECT_FILE: string;
  5. export declare const PROJECT_TYPES: ProjectType[];
  6. export declare const LEGACY_PROJECT_TYPES: ProjectType[];
  7. export declare const MODERN_PROJECT_TYPES: ProjectType[];
  8. export declare const COLUMNAR_OPTIONS: {
  9. hsep: string;
  10. vsep: string;
  11. };