@gobstones/typedoc-theme-gobstones
Version:
A simple theme for the Gobstones generated documentation.
8 lines • 437 B
TypeScript
/**
* @module Theme/Icons
* @author Alan Rodas Bonjour <alanrodas@gmail.com>
*/
import { JSX, ReflectionKind } from 'typedoc';
export type IconType = ReflectionKind | 'chevronDown' | 'checkbox' | 'menu' | 'search' | 'chevronSmall' | 'anchor' | 'folder' | 'alertNote' | 'alertTip' | 'alertImportant' | 'alertWarning' | 'alertCaution';
export type IconRecord = Record<IconType, () => JSX.Element>;
//# sourceMappingURL=IconType.d.ts.map