afdi-ambition-fbim-fe
Version:
3D组态BIM编辑器
14 lines (13 loc) • 671 B
TypeScript
import { EnumItem } from '../views/preview/constant';
/** 格式化时间 */
export declare const formatDateTime: (time: string | number | Date) => string;
/** 用 JS 获取全局 css 变量 */
export declare const getCssVariableValue: (cssVariableName: string) => string;
/** 用 JS 设置全局 CSS 变量 */
export declare const setCssVariableValue: (cssVariableName: string, cssVariableValue: string) => void;
export declare const logInfoWithColor: (message: any, color?: string) => void;
export declare const defaultPrefixUrl = "/graphics/bearer";
export declare const getSwitchOptions: (enumDetail: EnumItem[]) => {
enumKey: string;
enumValue: string;
}[];