UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

14 lines (13 loc) 299 B
import type { Coin } from './Coin'; export type PricelistClassV2 = { countNft?: number; /** * @deprecated */ priceInLovelace?: number | null; price?: number | null; currency?: Coin; isActive?: boolean; validFrom?: string | null; validTo?: string | null; };