diff --git a/.changeset/honest-buckets-hang.md b/.changeset/honest-buckets-hang.md new file mode 100644 index 0000000..1e8bcb1 --- /dev/null +++ b/.changeset/honest-buckets-hang.md @@ -0,0 +1,5 @@ +--- +"@gw2api/types": patch +--- + +Export `SharedInventoryItemStack` diff --git a/packages/types/data/account-inventory.ts b/packages/types/data/account-inventory.ts index a5c83f1..0e7a8e1 100644 --- a/packages/types/data/account-inventory.ts +++ b/packages/types/data/account-inventory.ts @@ -9,4 +9,4 @@ import type { ItemStack } from './item'; export type AccountInventory = Array; // item stacks in the shared inventory can not be bound to a character -type SharedInventoryItemStack = Omit & { binding?: 'Account' }; +export type SharedInventoryItemStack = Omit & { binding?: 'Account' };