UNPKG

@eagleoutice/flowr-dev

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

8 lines (7 loc) 410 B
import type { ReplOutput } from './repl-main'; /** Output that the user most likely wants on their clipboard as well. */ export declare const ReplClipboard: { readonly name: "ReplClipboard"; /** Prints `text` and, if the output allows it, copies it to the clipboard and reports `note` afterwards. */ readonly print: (this: void, output: ReplOutput, text: string, note: string) => Promise<void>; };