UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

11 lines (10 loc) 451 B
import type { RShell } from '../../r-bridge/shell'; import type { FlowrSearchLike } from '../../search/flowr-search-builder'; export interface ShowSearchOptions { readonly showCode?: boolean; readonly collapseResult?: boolean; } /** * Visualizes a search and its results in markdown format. */ export declare function showSearch(shell: RShell, code: string, search: FlowrSearchLike, { collapseResult }?: ShowSearchOptions): Promise<string>;