Added timestamps to logs

This commit is contained in:
La Programmatrice Verde
2025-08-18 16:04:49 +02:00
parent fd500d24a0
commit 67df0ea9f6
458 changed files with 12920 additions and 20 deletions

12
node_modules/dayjs/esm/plugin/weekOfYear/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import { PluginFunc } from 'dayjs/esm'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs/esm' {
interface Dayjs {
week(): number
week(value : number): Dayjs
}
}