@codedoc/core
Version:
Create beautiful modern documentation websites.
9 lines (8 loc) • 388 B
TypeScript
import { RendererLike } from '@connectv/html';
import { ThemedComponentThis } from '@connectv/jss-theme';
import { CodedocTheme } from '../../../transport';
export interface ToastOptions {
actions?: any;
timeout?: number;
}
export declare function Toast(this: ThemedComponentThis<CodedocTheme>, options: ToastOptions, renderer: RendererLike<any, any>, content: any): HTMLElement;