mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-23 15:19:36 +02:00
27 lines
542 B
TypeScript
27 lines
542 B
TypeScript
|
import { Keyboard } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Keycode info',
|
||
|
path: '/keycode-info',
|
||
|
description: 'Find the javascript keycode, code, location and modifiers of any pressed key.',
|
||
|
keywords: [
|
||
|
'keycode',
|
||
|
'info',
|
||
|
'code',
|
||
|
'javascript',
|
||
|
'event',
|
||
|
'keycodes',
|
||
|
'which',
|
||
|
'keyboard',
|
||
|
'press',
|
||
|
'modifier',
|
||
|
'alt',
|
||
|
'ctrl',
|
||
|
'meta',
|
||
|
'shift',
|
||
|
],
|
||
|
component: () => import('./keycode-info.vue'),
|
||
|
icon: Keyboard,
|
||
|
});
|