fix: Actions panel ux improvement (#6850)

Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
Viczián András 2023-10-24 20:36:13 +02:00 committed by GitHub
parent afea0df141
commit 71ad3c5356
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 279 additions and 261 deletions

View file

@ -695,3 +695,12 @@ export type KeyboardModifiersObject = {
altKey: boolean;
metaKey: boolean;
};
export type Primitive =
| number
| string
| boolean
| bigint
| symbol
| null
| undefined;