13 lines
311 B
TypeScript
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[];
|
|
};
|