/** * Converts Time units on your Desire * * @copyright (C) Sayyed Ali {Module-Mathjs} 2021-2023 * * Use ``from`` for any time units. [Seconds, Minutes, Hours, Days, Years] * * Use ``to`` for any time units. [Seconds,Minutes,Hors,Days,Years] * * Use ``value`` To enter how many units you want to convert * * @param from ```From which unit you want to convert``` * @param to ```To which unit you want to convert``` * @param value```How may Units you want to convert``` * * * * @license MIT License You can Edit your code for personal Desire */ declare function __timeConverter(from: string, to: string, value: number): number | string; export { __timeConverter };