2025-03-26 21:35:21 +00:00
|
|
|
import { defineTool } from '@tools/defineTool';
|
|
|
|
|
import { lazy } from 'react';
|
|
|
|
|
|
|
|
|
|
export const tool = defineTool('time', {
|
|
|
|
|
name: 'Truncate Clock Time',
|
2025-07-12 23:02:35 -07:00
|
|
|
path: 'truncate-clock-time',
|
|
|
|
|
icon: 'material-symbols:schedule',
|
2025-03-26 21:35:21 +00:00
|
|
|
description:
|
2025-07-12 23:02:35 -07:00
|
|
|
'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.name',
|
|
|
|
|
description: 'time.truncateClockTime.description',
|
|
|
|
|
shortDescription: 'time.truncateClockTime.shortDescription'
|
|
|
|
|
}
|
2025-03-26 21:35:21 +00:00
|
|
|
});
|