@codedoc/core
Version:
Create beautiful modern documentation websites.
9 lines (8 loc) • 515 B
TypeScript
import { RendererLike } from '@connectv/html';
import { ThemedComponentThis } from '@connectv/jss-theme';
import { CodedocTheme } from '../../../theme';
export declare const LoadingStyle: import("@connectv/jss-theme").ThemedStyle<CodedocTheme>;
export interface LoadingOptions {
color?: 'white' | 'black' | 'primary' | 'primary-contrast' | 'background' | 'text';
}
export declare function Loading(this: ThemedComponentThis<CodedocTheme>, options: LoadingOptions, renderer: RendererLike<any, any>): HTMLElement;