typedoc
Version:
Create api documentation for TypeScript projects.
14 lines (13 loc) • 429 B
TypeScript
import type { TypeDocOptionMap } from "../../../utils/index.js";
/**
* Responsible for getting a unique anchor for elements within a page.
*/
export declare class Slugger {
private options;
private seen;
private serialize;
constructor(options: TypeDocOptionMap["sluggerConfiguration"]);
slug(value: string): string;
hasAnchor(anchor: string): boolean;
getSimilarAnchors(anchor: string): string[];
}