2025-09-05 14:59:21 +08:00

13 lines
311 B
TypeScript

import type { H3Event } from 'h3';
export declare function getPathRobotConfig(e: H3Event, options?: {
skipSiteIndexable?: boolean;
path?: string;
}): {
indexable: boolean;
rule: string;
};
export declare function getSiteRobotConfig(e: H3Event): {
indexable: boolean;
hints: string[];
};