chore: update packages to latest versions

This commit is contained in:
2025-09-17 22:45:25 +10:00
parent 767f827750
commit e406e234f9
252 changed files with 34804 additions and 760 deletions

20
assets/js/dayjs/plugin/timezone.d.ts vendored Normal file
View File

@ -0,0 +1,20 @@
import { PluginFunc, ConfigType } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs' {
interface Dayjs {
tz(timezone?: string, keepLocalTime?: boolean): Dayjs
offsetName(type?: 'short' | 'long'): string | undefined
}
interface DayjsTimezone {
(date?: ConfigType, timezone?: string): Dayjs
(date: ConfigType, format: string, timezone?: string): Dayjs
guess(): string
setDefault(timezone?: string): void
}
const tz: DayjsTimezone
}