@fairfetch/fair-fetch
Version:
Protect your site from AI scrapers by adding invisible noise to your site which confuses AI bots while keeping your site looking and functioning normally for your human visitors.
18 lines • 458 B
TypeScript
export type FFNodeType = 'text' | 'element';
export interface FFNodeAttributes {
[key: string]: string | number | boolean | object;
}
export interface FFNode {
type: FFNodeType;
tag?: string;
attributes?: FFNodeAttributes;
children?: FFNode[];
content?: string;
componentType?: any;
}
export interface PolluteOptions {
disclaimers?: string[];
className?: string;
isDemo?: boolean;
}
//# sourceMappingURL=types.d.ts.map