# ParsedModifiers

Defined in: [hotkey.types.ts:134](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.types.ts#L134)

Resolved modifier flags shared by both parsed binding variants.

## Properties

### alt

```ts
alt: boolean;
```

Defined in: [hotkey.types.ts:140](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.types.ts#L140)

Whether Alt is required.

***

### ctrl

```ts
ctrl: boolean;
```

Defined in: [hotkey.types.ts:136](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.types.ts#L136)

Whether Control is required.

***

### meta

```ts
meta: boolean;
```

Defined in: [hotkey.types.ts:142](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.types.ts#L142)

Whether Meta (Command) is required.

***

### modifiers

```ts
modifiers: CanonicalModifier[];
```

Defined in: [hotkey.types.ts:144](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.types.ts#L144)

Required modifiers in canonical order.

***

### shift

```ts
shift: boolean;
```

Defined in: [hotkey.types.ts:138](https://github.com/TanStack/hotkeys/blob/main/packages/hotkeys/src/hotkey.types.ts#L138)

Whether Shift is required.
