Backend half
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs/esm'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs/esm' {
|
||||
interface Dayjs {
|
||||
isSameOrBefore(date?: ConfigType, unit?: OpUnitType): boolean
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
export default (function (o, c) {
|
||||
c.prototype.isSameOrBefore = function (that, units) {
|
||||
return this.isSame(that, units) || this.isBefore(that, units);
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user