UNPKG

ts-buildkit

Version:

Typescript Build Kit, this is generic build kit package created by Ahsan Mahmood (https://aoneahsan.com), this package is generic and contains code which will work both on frontend (ReactJs/typescript/etc) as well as on backend (nodejs/typescript/etc). pl

8 lines (6 loc) 390 B
declare const getDateFromFrbTimestamp: (frbTimestamp: any) => string; declare const convertToDateTimestampToStoreInDB: ({ val, }: { val?: string | number | Date; }) => number | null; declare const getRemainingTimeForCountDown: (countDownTimeFinishDate: string | undefined) => number; export { convertToDateTimestampToStoreInDB, getDateFromFrbTimestamp, getRemainingTimeForCountDown };