39 lines
1.7 KiB
TypeScript
39 lines
1.7 KiB
TypeScript
export declare const API_PREFIX = "osr";
|
|
export declare const API_PREFIX_NEXT = "polymech";
|
|
export declare const HOME: (sub?: string) => string;
|
|
export declare const get_var: (key?: string) => string;
|
|
export declare const OSR_ROOT: (key?: string) => string;
|
|
export declare const OSR_SUB_DEFAULT: (key?: string) => string;
|
|
export declare const CONFIG_DEFAULT_PATH: (key?: string) => string;
|
|
export declare const OSR_TEMP: (key?: string) => string;
|
|
export declare const OSR_CACHE: (key?: string) => string;
|
|
export declare const OSR_PRIVATE: (key?: string) => string;
|
|
export declare const KB_ROOT: (key?: string) => string;
|
|
export declare const OSR_LIBRARY: (key?: string) => string;
|
|
export declare const OSR_LIBRARY_MACHINES: (key?: string) => string;
|
|
export declare const OSR_LIBRARY_DIRECTORY: (key?: string) => string;
|
|
export declare const PRODUCT_ROOT: (key?: string) => string;
|
|
export declare const OSR_CUSTOMER_DRIVE: (key?: string) => string;
|
|
export declare const OA_ROOT: (key?: string) => string;
|
|
export declare const OSR_USER_ASSETS: (key?: string) => string;
|
|
export declare const POLYMECH_ROOT: (key?: string) => string;
|
|
export declare const DEFAULT_ROOTS: {
|
|
OSR_ROOT: string;
|
|
OSR_TEMP: string;
|
|
PRODUCT_ROOT: string;
|
|
OA_ROOT: string;
|
|
KB_ROOT: string;
|
|
OSR_CACHE: string;
|
|
OSR_LIBRARY: string;
|
|
OSR_LIBRARY_MACHINES: string;
|
|
OSR_LIBRARY_DIRECTORY: string;
|
|
OSR_USER_ASSETS: string;
|
|
OSR_PRIVATE: string;
|
|
OSR_TEMPLATES: string;
|
|
OSR_CONTENT: string;
|
|
OSR_PROFILES: string;
|
|
OSR_CUSTOMER_DRIVE: string;
|
|
POLYMECH_ROOT: string;
|
|
};
|
|
export declare const CONFIG_DEFAULT: (key?: string) => string | false | object;
|