@launchmenu/applet-dictionary
Version:
An applet to find dictionary definitions
11 lines • 410 B
TypeScript
import { IWikiSectionInfo } from "./IWikiSectionInfo";
/** The section info as well as a named and unnamed list of subsections */
export declare type IWikiSection<T extends {
[key: string]: IWikiSectionInfo | undefined;
} = {
[key: string]: IWikiSectionInfo;
}> = IWikiSectionInfo & {
children: T;
childList: IWikiSection[];
};
//# sourceMappingURL=IWikiHierarchicalStructure.d.ts.map