mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-05 16:34:57 +05:30
16 lines
446 B
TypeScript
16 lines
446 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('video', {
|
|
path: 'loop',
|
|
icon: 'material-symbols:loop',
|
|
|
|
keywords: ['video', 'loop', 'repeat', 'continuous'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'video:loop.title',
|
|
description: 'video:loop.description',
|
|
shortDescription: 'video:loop.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|