export declare const DefaultLanguage = "zh-CHS"; /** * 函数前缀,用于打开时去除函数前缀(比如"DefaultFunction") * @date 2022-05-13 */ export declare const FunctionPrefixs: string[]; /** * 一些函数由于命名不规范而弃用,这些函数重命名。为了支持已经保存的表达式,不规范命名函数将会保留,但是会被过滤掉 * @date 2022-05-13 */ export declare const DeprecatedFunctions: string[]; /** * 表达式内置上下文变量:当前语言编号,当前用户Id,当前用户Code,当前用户Name,当前组织Id,当前组织Code,当前组织Name * @date 2022-05-13 */ export declare const ContextVariables: { "zh-CHS": { key: string; name: string; description: string; }[]; "en": { key: string; name: string; description: string; }[]; "zh-CHT": { key: string; name: string; description: string; }[]; };