@grnsft/if
Version:
Impact Framework
10 lines (9 loc) • 369 B
TypeScript
import { CsvOptions } from '../types/csv';
/**
* Gets the manifest data if `outputs` is present in it.
*/
export declare const getManifestData: (manifest: string) => Promise<any>;
/**
* Generates a CSV file based on the provided tree structure, context, output path, and params.
*/
export declare const generateCsv: (options: CsvOptions) => Promise<string | void>;