UNPKG

zaions-tool-kit

Version:

Zaions Tool Kit, this is generic tool kit package created by Zaions Dev Team (https://zaions.com), there are two other packages named "@zaionsofficial/server-tool-kit" and "@zaionsofficial/client-tool-kit" while this package is generic and contains code w

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 };