14 lines
		
	
	
		
			449 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			449 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Camera } from '@vicons/tabler';
 | |
| import { defineTool } from '../tool';
 | |
| import { translate } from '@/plugins/i18n.plugin';
 | |
| 
 | |
| export const tool = defineTool({
 | |
|   name: translate('tools.camera-recorder.title'),
 | |
|   path: '/camera-recorder',
 | |
|   description: translate('tools.camera-recorder.description'),
 | |
|   keywords: ['camera', 'recoder'],
 | |
|   component: () => import('./camera-recorder.vue'),
 | |
|   icon: Camera,
 | |
|   createdAt: new Date('2023-05-15'),
 | |
| });
 |