Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - 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>
25 lines
594 B
TypeScript
25 lines
594 B
TypeScript
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
|
|
}
|
|
}
|