abit-cache
Version:
React cache library from scratch
7 lines (6 loc) • 311 B
TypeScript
declare const ONE_SECOND_IN_MS = 1000;
declare const TWO_SECONDS_IN_MS: number;
declare const FIVE_SECONDS_IN_MS: number;
declare const ONE_MINUTE_IN_MS: number;
declare const FIVE_MINUTES_IN_MS: number;
export { FIVE_MINUTES_IN_MS, FIVE_SECONDS_IN_MS, ONE_MINUTE_IN_MS, ONE_SECOND_IN_MS, TWO_SECONDS_IN_MS, };