mirror of
https://github.com/duckietm/Nitro-Cool-UI.git
synced 2025-06-21 22:36:58 +00:00
9 lines
553 B
TypeScript
9 lines
553 B
TypeScript
import { UnseenItemCategory } from '../../../api/inventory/UnseenItemCategory';
|
|
|
|
export const TAB_FURNITURE: string = 'inventory.furni';
|
|
export const TAB_BOTS: string = 'inventory.bots';
|
|
export const TAB_PETS: string = 'inventory.furni.tab.pets';
|
|
export const TAB_BADGES: string = 'inventory.badges';
|
|
export const TABS = [ TAB_FURNITURE, TAB_PETS, TAB_BADGES, TAB_BOTS ];
|
|
export const UNSEEN_CATEGORIES = [ UnseenItemCategory.FURNI, UnseenItemCategory.PET, UnseenItemCategory.BADGE, UnseenItemCategory.BOT ];
|
|
export const MAX_ITEMS_TO_TRADE: number = 9; |