mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 01:14:57 +05:30
16 lines
520 B
TypeScript
16 lines
520 B
TypeScript
import { defineTool } from '@tools/defineTool';
|
|
import { lazy } from 'react';
|
|
|
|
export const tool = defineTool('number', {
|
|
path: 'arithmetic-sequence',
|
|
icon: 'material-symbols:functions',
|
|
|
|
keywords: ['arithmetic', 'sequence', 'math', 'progression'],
|
|
component: lazy(() => import('./index')),
|
|
i18n: {
|
|
name: 'number:arithmeticSequence.title',
|
|
description: 'number:arithmeticSequence.description',
|
|
shortDescription: 'number:arithmeticSequence.shortDescription',
|
|
userTypes: ['generalUsers']
|
|
}
|
|
});
|