export interface IGetDetailResult { id: number; name: string; description: string; created_at: string; image_url: string; count: number; fixed_price: string; total_price: string; sale_address: string; id_in_contract: string; token_id: number; token_standard: string; owner: string; nft_address: string; block_chain: string; start_time: number; status: string; properties: Property[]; } export interface Property { key: string; value: string; } export interface IFound { id: number; name: string; description: string; created_at: string; image_url: string; count: number; fixed_price: string; total_price: string; sale_address: string; id_in_contract: string; token_id: number; token_standard: string; owner: string; nft_address: string; block_chain: string; start_time: number; status: string; properties: { Rarity: string; Race: string; Level: string; Healthy: string; Score: string; Luck: string; Courage: string; Wisdom: string; Size: string; Stealth: string; }; } //# sourceMappingURL=get-detail.interface.d.ts.map