@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
11 lines (10 loc) • 503 B
TypeScript
/// <reference types="react" />
import { IAuction, IGetAuctionsOptions } from "@cross-nft-marketplace/auction-house-nft-hooks";
import type { SWRConfiguration } from "swr";
declare type AuctionHouseProps = {
onClick?: (evt: React.MouseEvent<HTMLElement>, result: any) => void;
filterOptions?: IGetAuctionsOptions;
options?: SWRConfiguration<IAuction[]>;
};
export declare const AuctionHouseList: ({ onClick, filterOptions, options, }: AuctionHouseProps) => JSX.Element;
export {};