mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
17 lines
524 B
TypeScript
17 lines
524 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('time', {
|
|
path: 'truncate-clock-time',
|
|
icon: 'material-symbols:schedule',
|
|
|
|
keywords: ['time', 'truncate', 'clock', 'round', 'precision'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'time:truncateClockTime.title',
|
|
description: 'time:truncateClockTime.description',
|
|
shortDescription: 'time:truncateClockTime.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|