UNPKG

@crypto-dev/pasar-sdk-development

Version:
18 lines (17 loc) 516 B
import { Condition } from "../filters/condition"; declare enum Category { General = "General", Collectibles = "Collectibles", Art = "Art", Photograhpy = "Photography", TradingCards = "TradingCards", Utility = "Utility", Domains = "Domains" } declare const getCategoryList: () => string[]; declare class CategoryConditon extends Condition { private category; constructor(category?: Category); getCategory(): Category; } export { Category, getCategoryList, CategoryConditon, };