6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
45 lines
666 B
TypeScript
45 lines
666 B
TypeScript
import { PluginFunc, UnitType, ConfigType } from 'dayjs'
|
|
|
|
declare const plugin: PluginFunc
|
|
export = plugin
|
|
|
|
declare module 'dayjs' {
|
|
interface Dayjs {
|
|
years(): number
|
|
|
|
years(value: number): Dayjs
|
|
|
|
months(): number
|
|
|
|
months(value: number): Dayjs
|
|
|
|
dates(): number
|
|
|
|
dates(value: number): Dayjs
|
|
|
|
weeks(): number
|
|
|
|
weeks(value: number): Dayjs
|
|
|
|
days(): number
|
|
|
|
days(value: number): Dayjs
|
|
|
|
hours(): number
|
|
|
|
hours(value: number): Dayjs
|
|
|
|
minutes(): number
|
|
|
|
minutes(value: number): Dayjs
|
|
|
|
seconds(): number
|
|
|
|
seconds(value: number): Dayjs
|
|
|
|
milliseconds(): number
|
|
|
|
milliseconds(value: number): Dayjs
|
|
}
|
|
}
|