function defaultimport { default } from "https://deno.land/x/date_fns@v2.22.0/hoursToSeconds/index.ts"; default(hours: number): numberExamples// Convert 2 hours to seconds: const result = hoursToSeconds(2) //=> 7200 Parametershours: number number of hours to be converted Returnsnumberthe number of hours converted in seconds