next-google-adsense
Version:
Next.js Google AdSense
12 lines (11 loc) • 366 B
TypeScript
/// <reference types="react" />
import { type Layout as AdLayout } from "./AdLayout";
type AdUnitProps = {
publisherId?: string;
slotId: string;
layout: AdLayout;
customLayout?: JSX.Element;
comment?: string;
};
export declare const AdUnit: ({ publisherId, slotId, layout, customLayout, comment, }: AdUnitProps) => JSX.Element | null;
export {};