Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
471 B
Text
18 lines
471 B
Text
/**
|
|
* @name minutesToSeconds
|
|
* @category Conversion Helpers
|
|
* @summary Convert minutes to seconds.
|
|
*
|
|
* @description
|
|
* Convert a number of minutes to a full number of seconds.
|
|
*
|
|
* @param minutes - The number of minutes to be converted
|
|
*
|
|
* @returns The number of minutes converted in seconds
|
|
*
|
|
* @example
|
|
* // Convert 2 minutes to seconds
|
|
* const result = minutesToSeconds(2)
|
|
* //=> 120
|
|
*/
|
|
export declare function minutesToSeconds(minutes: number): number;
|