UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

13 lines (12 loc) 493 B
export interface DetailsOptions { readonly color?: string; readonly open?: boolean; readonly hideIfEmpty?: boolean; readonly prefixInit?: string; } export declare function details(title: string, content: string, { color, open, hideIfEmpty, prefixInit }?: DetailsOptions): string; export interface BlockOptions { readonly type: 'NOTE' | 'WARNING' | 'TIP' | 'IMPORTANT'; readonly content: string; } export declare function block({ type, content }: BlockOptions): string;