Files
omni-tools/src/pages/tools/time/convert-time-to-seconds/meta.ts

15 lines
580 B
TypeScript
Raw Normal View History

2025-03-26 17:40:24 +00:00
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
name: 'Convert time to seconds',
2025-03-26 17:40:24 +00:00
path: 'convert-time-to-seconds',
icon: 'material-symbols:schedule',
2025-03-26 17:40:24 +00:00
description:
'Convert time format (HH:MM:SS) to total seconds. Useful for time calculations and programming.',
shortDescription: 'Convert time format (HH:MM:SS) to seconds',
keywords: ['time', 'seconds', 'convert', 'format', 'HH:MM:SS'],
userTypes: ['General Users', 'Students', 'Developers'],
2025-03-26 17:40:24 +00:00
component: lazy(() => import('./index'))
});