16 lines
463 B
TypeScript
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
|