You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
586 B
24 lines
586 B
import { PluginFunc, ConfigType } from 'dayjs' |
|
|
|
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' { |
|
interface Dayjs { |
|
fromNow(withoutSuffix?: boolean): string |
|
from(compared: ConfigType, withoutSuffix?: boolean): string |
|
toNow(withoutSuffix?: boolean): string |
|
to(compared: ConfigType, withoutSuffix?: boolean): string |
|
} |
|
}
|
|
|