import { IRuntimeLoaderOptions } from '../../base/IRuntimeLoaderOptions'; import { IStorageRefOptions } from '../storage/IStorageRefOptions'; import { ITypexsOptions } from '../ITypexsOptions'; /** * Command options */ export declare const LOAD_ORDER_ONLY = "load-order-only"; export declare const USED_FILES_ONLY = "used-files-only"; export declare const USED_SOURCES_ONLY = "used-sources-only"; export declare const OPTIONS_ONLY = "options-only"; export declare const VALIDATE_ONLY = "validate-only"; export declare const SCHEMA_ONLY = "schema-only"; export declare const ENV_CONFIG_LOAD_KEY = "txs-config-load"; export declare const NAMESPACE_CONFIG = "config"; /** * Search for config files * - first look for hostname specific files * - then for context specific controlled by startup arguments like 'nodeId' and 'stage' */ export declare const DEFAULT_CONFIG_LOAD_ORDER: ({ type: string; file: string; namespace?: undefined; pattern?: undefined; } | { type: string; file: { dirname: string; filename: string; }; namespace: string; pattern: string[]; } | { type: string; file: { dirname: string; filename: string; }; pattern: string[]; namespace?: undefined; })[]; /** * using default path for caching */ export declare const DEFAULT_RUNTIME_OPTIONS: IRuntimeLoaderOptions; export declare const DEFAULT_STORAGE_OPTIONS: IStorageRefOptions; export declare const DEFAULT_TYPEXS_OPTIONS: ITypexsOptions;