# KeyboardShortcutDefinition

## Content

# Type Alias: KeyboardShortcutDefinition

```ts
type KeyboardShortcutDefinition = object;
```

Keyboard shortcut definition.

## Properties

### keyCode?

```ts
optional keyCode: number;
```

Optional key code.

***

### ctrl?

```ts
optional ctrl: boolean;
```

Specifies whether the Ctrl key should be pressed.

***

### shift?

```ts
optional shift: boolean;
```

Specifies whether the Shift key should be pressed.

***

### alt?

```ts
optional alt: boolean;
```

Specifies whether the Alt key should be pressed.

***

### meta?

```ts
optional meta: boolean;
```

Specifies whether the Meta key should be pressed.

***

### tool

```ts
tool: KeyboardShortcutTool | Function;
```

Shortcut action.
