nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
19 lines (18 loc) • 620 B
TypeScript
import type { Blockchain } from './Blockchain';
import type { PricelistClass } from './PricelistClass';
import type { PublicMintState } from './PublicMintState';
export type PublicMintsClass = {
projectName?: string | null;
projectDescription?: string | null;
projectImage?: string | null;
projectUrl?: string | null;
projectCreated?: string;
createrName?: string | null;
mintStart?: string;
mintState?: PublicMintState;
pricelist?: Array<PricelistClass> | null;
totalNfts?: number;
reservedNfts?: number;
soldNfts?: number;
blockchains?: Array<Blockchain> | null;
};