getit-sdk
Version:
Getit sdk plugin. Used to provide an ad for your dapp.
15 lines (14 loc) • 326 B
TypeScript
interface IProps {
apiKey: string;
walletConnected: string;
isMobile?: boolean;
slotId: string;
height?: number;
}
declare global {
interface Window {
ethereum?: any;
}
}
declare const GetitAdPlugin: (props: IProps) => import("react/jsx-runtime").JSX.Element;
export default GetitAdPlugin;