mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('video', {
|
|
path: 'video-to-gif',
|
|
icon: 'material-symbols:gif',
|
|
keywords: ['video', 'gif', 'convert', 'animated', 'image'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'video:videoToGif.title',
|
|
description: 'video:videoToGif.description',
|
|
shortDescription: 'video:videoToGif.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|