@codedoc/core
Version:
Create beautiful modern documentation websites.
13 lines (12 loc) • 550 B
TypeScript
import { RendererLike } from '@connectv/html';
import { ThemedComponentThis } from '@connectv/jss-theme';
import { CodedocTheme } from '../../theme';
export interface TabOptions {
selected?: boolean;
title?: string;
icon?: string;
id?: string;
}
export declare function Tab(options: TabOptions, renderer: RendererLike<any, any>, content: any): HTMLElement;
export declare function Tabs(this: ThemedComponentThis<CodedocTheme>, _: any, renderer: RendererLike<any, any>, content: any): HTMLElement;
export { TabsStyle } from './style';