Initalize

This commit is contained in:
Your Name
2026-05-03 12:12:57 -04:00
commit 38652eb9b5
10603 changed files with 1762136 additions and 0 deletions

13
node_modules/timeago.js/lib/interface.d.ts generated vendored Normal file
View File

@@ -0,0 +1,13 @@
export declare type LocaleFunc = (diff: number, idx: number, totalSec?: number) => [string, string];
export declare type LocaleMap = Record<string, LocaleFunc>;
export declare type TDate = Date | string | number;
export declare type TimerPool = Record<number, number>;
/**
* render / format options
*/
export declare type Opts = {
/** the relative date */
readonly relativeDate?: TDate;
/** the realtime */
readonly minInterval?: number;
};