@eagleoutice/flowr-dev
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
13 lines (12 loc) • 479 B
TypeScript
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';
readonly content: string;
}
export declare function block({ type, content }: BlockOptions): string;