徐总多门店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.1 KiB

5 months ago
import { CommafyOptions } from "./commafy"
import { FirstDayOfWeek } from "./getWhatWeek"
import { ToDateStringFormats } from "./toDateString"
export interface SetupDefaults {
/**
*
* toArrayTree()toTreeArray()
*/
treeOptions?: {
strict?: boolean;
parentKey?: string;
key?: string;
children?: string;
data?: string;
[key: string]: any;
};
/**
*
* toDateString()
*/
parseDateFormat?: string;
/**
*
* toDateString()
*/
parseDateRules?: ToDateStringFormats;
/**
*
* getWhatWeek()getYearWeek()toDateString()
*/
firstDayOfWeek?: FirstDayOfWeek;
/**
*
* commafy()
*/
commafyOptions?: CommafyOptions;
/**
* parseDateRules
* @deprecated
*/
formatStringMatchs?: any;
/**
* parseDateFormat
* @deprecated
*/
formatString?: string;
[key: string]: any;
}
export default SetupDefaults