Athena.player.inventory.Internal ​
Type Aliases ​
Exclude ​
Ƭ Exclude<T, U>: T extends U ? never : T
Exclude from T those types that are assignable to U
Type parameters ​
| Name |
|---|
T |
U |
Defined in ​
../../node_modules/typescript/lib/lib.es5.d.ts:1566
Omit ​
Ƭ Omit<T, K>: Pick<T, Exclude<keyof T, K>>
Construct a type with the properties of T except for those in type K.
Type parameters ​
| Name | Type |
|---|---|
T | T |
K | extends keyof any |
Defined in ​
../../node_modules/typescript/lib/lib.es5.d.ts:1576
Pick ​
Ƭ Pick<T, K>:
From T, pick a set of properties whose keys are in the union K
Type parameters ​
| Name | Type |
|---|---|
T | T |
K | extends keyof T |
Defined in ​
../../node_modules/typescript/lib/lib.es5.d.ts:1552
V5 Docs