@crypto-dev/pasar-sdk-development
Version:
PasarProtocol NFT Marketplace SDK
17 lines (16 loc) • 363 B
TypeScript
declare enum ConditionType {
Sensitive = 0,
PricingTokens = 1,
Collections = 2,
PriceRange = 3,
ListingStatus = 4,
ItemType = 5,
Blockchain = 6,
CollectionCategory = 7
}
declare class Condition {
private type;
protected constructor(type: ConditionType);
getType(): ConditionType;
}
export { ConditionType, Condition };