UNPKG

@cainiaofe/cn-ui-m

Version:
11 lines (10 loc) 471 B
import { IQuarterPrecision } from '../types'; import { IDatePrecision } from '../types/i-date-precision'; import { IWeekPrecision } from '../types/i-week-precision'; import { TLanguage } from '@cainiaofe/cn-i18n'; /** * 根据精度返回format字符串 * @param precision 精度 * @returns formatStrig */ export declare const getFormatStrFromPrecision: (precision: IWeekPrecision | IDatePrecision | IQuarterPrecision, adapterLocale?: boolean | TLanguage) => string;