Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
774 B
TypeScript
23 lines
774 B
TypeScript
import { PluginFunc } from 'dayjs'
|
|
|
|
declare const plugin: PluginFunc
|
|
export = plugin
|
|
|
|
declare module 'dayjs' {
|
|
export function max(dayjs: [Dayjs, ...Dayjs[]]): Dayjs
|
|
export function max(noDates: never[]): null
|
|
export function max(maybeDates: Dayjs[]): Dayjs | null
|
|
|
|
export function max(...dayjs: [Dayjs, ...Dayjs[]]): Dayjs
|
|
export function max(...noDates: never[]): null
|
|
export function max(...maybeDates: Dayjs[]): Dayjs | null
|
|
|
|
export function min(dayjs: [Dayjs, ...Dayjs[]]): Dayjs
|
|
export function min(noDates: never[]): null
|
|
export function min(maybeDates: Dayjs[]): Dayjs | null
|
|
|
|
export function min(...dayjs: [Dayjs, ...Dayjs[]]): Dayjs
|
|
export function min(...noDates: never[]): null
|
|
export function min(...maybeDates: Dayjs[]): Dayjs | null
|
|
}
|