@signalwire/docusaurus-plugin-llms-txt
Version:
Generate Markdown versions of Docusaurus HTML pages and an llms.txt index file
15 lines • 515 B
TypeScript
/**
* Exclusion pattern matching
* Pattern matching for exclude paths
*/
/**
* Create exclusion matcher function from exclude patterns
* @internal
*/
export declare function createExclusionMatcher(excludeRoutes?: readonly string[]): (_path: string) => boolean;
/**
* Checks if a route path should be excluded based on exclude patterns
* @internal
*/
export declare function isRouteExcluded(routePath: string, isExcluded: (_path: string) => boolean): boolean;
//# sourceMappingURL=exclusion-matcher.d.ts.map