Files
omni-tools/src/pages/tools/time/truncate-clock-time/meta.ts
Ibrahima G. Coulibaly 21c4f44d4e fix: misc
2025-07-13 11:25:05 +01:00

19 lines
705 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
name: 'Truncate Clock Time',
path: 'truncate-clock-time',
icon: 'material-symbols:schedule',
description:
'Truncate clock time to remove seconds or minutes. Round time to the nearest hour, minute, or custom interval.',
shortDescription: 'Truncate clock time to specified precision',
keywords: ['time', 'truncate', 'clock', 'round', 'precision'],
component: lazy(() => import('./index')),
i18n: {
name: 'time:truncateClockTime.title',
description: 'time:truncateClockTime.description',
shortDescription: 'time:truncateClockTime.shortDescription'
}
});