mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-09 09:55:07 +05:30
16 lines
538 B
TypeScript
16 lines
538 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('time', {
|
|
path: 'convert-time-to-seconds',
|
|
icon: 'material-symbols:schedule',
|
|
|
|
keywords: ['time', 'seconds', 'convert', 'format', 'HH:MM:SS'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'time:convertTimeToSeconds.title',
|
|
description: 'time:convertTimeToSeconds.description',
|
|
shortDescription: 'time:convertTimeToSeconds.shortDescription',
|
|
userTypes: ['generalUsers', 'developers']
|
|
}
|
|
});
|