mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-14 11:58:33 +05:30
24 lines
581 B
TypeScript
24 lines
581 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('conversion', {
|
|
path: 'length-converter',
|
|
icon: 'mdi:ruler',
|
|
keywords: [
|
|
'length',
|
|
'distance',
|
|
'convert',
|
|
'meter',
|
|
'mile',
|
|
'yard',
|
|
'foot',
|
|
'inch'
|
|
],
|
|
component: lazy(() => import('./length-converter')),
|
|
i18n: {
|
|
name: 'translation:lengthConverter.title',
|
|
description: 'translation:lengthConverter.description',
|
|
shortDescription: 'translation:lengthConverter.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|