mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-18 11:04:03 +01:00
15 lines
459 B
TypeScript
15 lines
459 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('time', {
|
|
i18n: {
|
|
name: 'time:convertUnixToDate.title',
|
|
description: 'time:convertUnixToDate.description',
|
|
shortDescription: 'time:convertUnixToDate.shortDescription'
|
|
},
|
|
path: 'convert-unix-to-date',
|
|
icon: 'material-symbols:schedule',
|
|
keywords: ['convert', 'unix', 'to', 'date'],
|
|
component: lazy(() => import('./index'))
|
|
});
|