@cross-nft-marketplace/auction-house-nft-components
Version:
NFT Media Rendering Components
15 lines (14 loc) • 592 B
TypeScript
/// <reference types="react" />
import { NetworkIDs } from "@cross-nft-marketplace/auction-house-nft-hooks";
import { Strings } from "../constants/strings";
import { Style } from "../constants/style";
import type { RendererConfig } from "../content-components/RendererConfig";
export declare type ThemeType = typeof Style;
export declare type MediaContextType = {
style: ThemeType;
networkId: NetworkIDs;
strings: typeof Strings;
kIndexer: string;
renderers: RendererConfig[];
};
export declare const MediaContext: import("react").Context<MediaContextType>;