UNPKG

typedoc-theme-yaf

Version:

A fresh, opinionated and standalone front-end documentation application consuming Typedoc generated data.

11 lines (10 loc) 309 B
import { yafDisplayOptions } from '../../../types/frontendTypes.js'; type display = { key: yafDisplayOptions; value: 'show' | 'hide'; }; export declare const display: (key: display['key'], value: display['value']) => CustomEvent<display>; export interface options { display: display; } export {};