优化订单

This commit is contained in:
gyq
2025-04-30 18:10:14 +08:00
parent 12c4fb3629
commit 8c1a1644be
921 changed files with 30238 additions and 3405 deletions

20
node_modules/dayjs/plugin/toObject.d.ts generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import { PluginFunc } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
interface DayjsObject {
years: number
months: number
date: number
hours: number
minutes: number
seconds: number
milliseconds: number
}
declare module 'dayjs' {
interface Dayjs {
toObject(): DayjsObject
}
}