UNPKG

iking-utils

Version:

金合前端工具库

8 lines (7 loc) 302 B
import type { Opts, TDate } from 'timeago.js'; import { cancel } from 'timeago.js'; export default function useTimeago(): { format: (data: TDate, opts?: Opts) => string; render: (nodes: HTMLElement | HTMLElement[] | NodeList, opts?: Opts) => HTMLElement[]; cancel: typeof cancel; };