@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
18 lines (17 loc) • 614 B
TypeScript
/// <reference types="react" />
import { IGetAuctionsOptions } from "@cross-nft-marketplace/auction-house-nft-hooks";
interface INftId {
contract: string;
tokenId: string;
}
export declare type NFTDataProviderProps = {
nftId?: INftId;
auctionId?: number;
children: React.ReactNode;
showBids?: boolean;
auctionsOptions?: IGetAuctionsOptions;
swrConfiguration?: any;
kIndexerEnabled?: boolean;
};
export declare const NFTDataProvider: ({ children, nftId, auctionId, swrConfiguration, showBids, kIndexerEnabled, }: NFTDataProviderProps) => JSX.Element;
export {};