/
githubmirror
/
dayjs
Обзор
Документация
Войти
/
githubmirror
/
dayjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/plugin/isSameOrAfter.d.ts
10 строк
226 B
양현석
fix: type file first parameter date is optional in isSame(), isBefore(), isAfter() (#2272)
16 апр 2023, 16:53
Не верифицирован
16 апр 2023, 16:53
4d56f3e
Код
Авторство
О чём код?
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs' declare const plugin: PluginFunc export = plugin declare module 'dayjs' { interface Dayjs { isSameOrAfter(date?: ConfigType, unit?: OpUnitType): boolean } }