jabb-astro-components
Version:
UI Components for web development
44 lines (41 loc) • 1.16 kB
TypeScript
export {};
declare global {
/**
* @description If you want to sell a space into your website or use it for Google Ads, use this module
*/
namespace Ads {
/**
* @description This is an ad space for direct sell
* @param sold
* @param title ?
* @param href ?
* @param quote ?
* @param ariaLabel ?
* @param rel ?
* @param target ?
* @param message ?
* @param width ?
* @param height ?
* @param responsive ?
* @param img ?
*/
export interface AdSpace {
sold: boolean;
title?: string;
href?: string;
quote?: string;
ariaLabel?: string;
rel?: RelationLink;
target?: TargetPage;
message?: string;
width?: number;
height?: number;
responsive?: string;
img?: string;
}
export interface AdSense {
slot: '7640967663' | '5421280545';
format?: 'autorelaxed' | 'auto';
}
}
}