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

17 lines
538 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', {
path: 'convert-time-to-seconds',
icon: 'material-symbols:schedule',
2025-07-14 18:04:30 +01:00
keywords: ['time', 'seconds', 'convert', 'format', 'HH:MM:SS'],
2025-07-12 23:02:35 -07:00
component: lazy(() => import('./index')),
i18n: {
2025-07-13 11:25:05 +01:00
name: 'time:convertTimeToSeconds.title',
description: 'time:convertTimeToSeconds.description',
shortDescription: 'time:convertTimeToSeconds.shortDescription',
2025-07-22 19:47:09 +01:00
userTypes: ['generalUsers', 'developers']
2025-07-12 23:02:35 -07:00
}
2025-03-26 17:40:24 +00:00
});