mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-18 19:14:01 +01:00
17 lines
512 B
TypeScript
17 lines
512 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('time', {
|
|
path: 'convert-seconds-to-time',
|
|
icon: 'material-symbols:schedule',
|
|
|
|
keywords: ['seconds', 'time', 'convert', 'format'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'time:convertSecondsToTime.title',
|
|
description: 'time:convertSecondsToTime.description',
|
|
shortDescription: 'time:convertSecondsToTime.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|