údržba
This commit is contained in:
10
CyLukTs/lukan/node_modules/dayjs/esm/plugin/isSameOrAfter/index.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/esm/plugin/isSameOrAfter/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs/esm'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs/esm' {
|
||||
interface Dayjs {
|
||||
isSameOrAfter(date?: ConfigType, unit?: OpUnitType): boolean
|
||||
}
|
||||
}
|
5
CyLukTs/lukan/node_modules/dayjs/esm/plugin/isSameOrAfter/index.js
generated
vendored
Normal file
5
CyLukTs/lukan/node_modules/dayjs/esm/plugin/isSameOrAfter/index.js
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
export default (function (o, c) {
|
||||
c.prototype.isSameOrAfter = function (that, units) {
|
||||
return this.isSame(that, units) || this.isAfter(that, units);
|
||||
};
|
||||
});
|
Reference in New Issue
Block a user