mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
30 lines
619 B
TypeScript
30 lines
619 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('audio', {
|
|
i18n: {
|
|
name: 'audio:trim.title',
|
|
description: 'audio:trim.description',
|
|
shortDescription: 'audio:trim.shortDescription',
|
|
longDescription: 'audio:trim.longDescription',
|
|
userTypes: ['General Users', 'Students', 'Developers']
|
|
},
|
|
|
|
path: 'trim',
|
|
icon: 'mdi:scissors-cutting',
|
|
|
|
keywords: [
|
|
'trim',
|
|
'audio',
|
|
'cut',
|
|
'segment',
|
|
'extract',
|
|
'mp3',
|
|
'aac',
|
|
'wav',
|
|
'audio editing',
|
|
'time'
|
|
],
|
|
component: lazy(() => import('./index'))
|
|
});
|