UNPKG

324 BTypeScriptView Raw
1import { Json2CsvTransform, UnwindOptions } from "../";
2
3/**
4 * Builds a unwinding transform
5 *
6 * @param options Options to use for unwinding
7 * @returns Array of objects containing all rows after unwind of chosen paths
8 */
9declare function unwind(options?: UnwindOptions): Json2CsvTransform<any, any[]>;
10
11export = unwind;