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

24
node_modules/dayjs/esm/plugin/relativeTime/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { PluginFunc, ConfigType } from 'dayjs/esm'
declare interface RelativeTimeThreshold {
l: string
r?: number
d?: string
}
declare interface RelativeTimeOptions {
rounding?: (num: number) => number
thresholds?: RelativeTimeThreshold[]
}
declare const plugin: PluginFunc<RelativeTimeOptions>
export = plugin
declare module 'dayjs/esm' {
interface Dayjs {
fromNow(withoutSuffix?: boolean): string
from(compared: ConfigType, withoutSuffix?: boolean): string
toNow(withoutSuffix?: boolean): string
to(compared: ConfigType, withoutSuffix?: boolean): string
}
}