0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
21 lines
315 B
TypeScript
21 lines
315 B
TypeScript
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
|
|
}
|
|
}
|