2025-10-22 14:08:03 +08:00

10 lines
345 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// types.js
export const DATE_FORMATS = {
short: 'yyyy-MM-dd',
long: 'yyyy年MM月dd日',
// 根据你的需求补充其他格式
};
export type DateFormatType = keyof typeof DATE_FORMATS; // 仅TypeScript可用JS可省略
export const WEEKDAYS = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'];