iking-utils-test
Version:
金合前端工具库(1.2.9版本之后需要注册KEY)
22 lines (21 loc) • 517 B
TypeScript
import type { TDate } from 'timeago.js';
declare const timeAgo: {
name: string;
mounted: (el: {
innerText: string;
__timeagoSetInterval__: any;
}, binding: {
value: TDate;
modifiers: {
interval: any;
};
}) => void;
beforeUnmount: (el: {
__timeagoSetInterval__: string | number | any | undefined;
}, binding: {
modifiers: {
interval: any;
};
}) => void;
};
export default timeAgo;