mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-20 14:39:34 +02:00
17 lines
562 B
TypeScript
17 lines
562 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('string', {
|
|
path: 'url-encode-string',
|
|
icon: 'ic:baseline-percentage',
|
|
|
|
keywords: ['url', 'encode', 'string', 'url encode', 'encoding', 'percent'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'string:urlEncode.toolInfo.title',
|
|
description: 'string:urlEncode.toolInfo.description',
|
|
shortDescription: 'string:urlEncode.toolInfo.shortDescription',
|
|
longDescription: 'string:urlEncode.toolInfo.longDescription'
|
|
}
|
|
});
|