UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

16 lines (15 loc) 452 B
import type { ReadonlyFlowrAnalysisProvider } from '../project/flowr-analyzer'; export interface BaseQueryFormat { /** used to select the query type :) */ readonly type: string; } export interface BaseQueryMeta { /** Duration in milliseconds */ readonly timing: number; } export interface BaseQueryResult { readonly '.meta': BaseQueryMeta; } export interface BasicQueryData { readonly analyzer: ReadonlyFlowrAnalysisProvider; }