UNPKG

482 BTypeScriptView Raw
1/**
2 * @name quartersToMonths
3 * @category Conversion Helpers
4 * @summary Convert number of quarters to months.
5 *
6 * @description
7 * Convert a number of quarters to a full number of months.
8 *
9 * @param quarters - The number of quarters to be converted
10 *
11 * @returns The number of quarters converted in months
12 *
13 * @example
14 * // Convert 2 quarters to months
15 * const result = quartersToMonths(2)
16 * //=> 6
17 */
18export declare function quartersToMonths(quarters: number): number;