rmarkdown-helper
Version:
Wrapper for R Markdown and related R packages (Bookdown and Blogdown)
14 lines (13 loc) • 496 B
TypeScript
/// <reference types="node" />
interface RenderOptions {
output_format?: string;
output_file?: string;
output_dir?: string;
output_options?: string;
output_yaml?: string;
quiet?: boolean;
encoding: boolean;
}
export declare function render(input: any, options?: RenderOptions): import("child_process").ChildProcessWithoutNullStreams;
export declare function renderSync(input: any, options?: RenderOptions): import("child_process").SpawnSyncReturns<Buffer>;
export {};