mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-16 12:45:42 +02:00
fase 5
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @name weeksToDays
|
||||
* @category Conversion Helpers
|
||||
* @summary Convert weeks to days.
|
||||
*
|
||||
* @description
|
||||
* Convert a number of weeks to a full number of days.
|
||||
*
|
||||
* @param weeks - The number of weeks to be converted
|
||||
*
|
||||
* @returns The number of weeks converted in days
|
||||
*
|
||||
* @example
|
||||
* // Convert 2 weeks into days
|
||||
* const result = weeksToDays(2)
|
||||
* //=> 14
|
||||
*/
|
||||
export declare function weeksToDays(weeks: number): number;
|
||||
Reference in New Issue
Block a user