world/book/node_modules/honkit/lib/models/glossaryEntry.d.ts
2025-05-12 05:38:44 +09:00

16 lines
463 B
TypeScript

import Immutable from "immutable";
declare const GlossaryEntry_base: Immutable.Record.Class;
declare class GlossaryEntry extends GlossaryEntry_base {
getName(): string;
getDescription(): string;
/**
Get identifier for this entry
*/
getID(): string;
/**
Normalize a glossary entry name into a unique id
*/
static nameToID(name: string): string;
}
export default GlossaryEntry;
//# sourceMappingURL=glossaryEntry.d.ts.map