export const MarketplaceListingType = {
    Sell: 'sell',
    Buy: 'buy',
} as const;

export type MarketplaceListingType =
    (typeof MarketplaceListingType)[keyof typeof MarketplaceListingType];
