UNPKG

@warlock.js/cascade

Version:

ORM for managing databases

14 lines 476 B
import { Pipeline } from "./pipeline"; export type UnwindOptions = { preserveNullAndEmptyArrays?: boolean; includeArrayIndex?: string; }; export declare class UnwindPipeline extends Pipeline { protected readonly column: string; /** * Constructor */ constructor(column: string, options?: UnwindOptions); } export declare function unwindPipeline(column: string, options?: UnwindOptions): UnwindPipeline; //# sourceMappingURL=UnwindPipeline.d.ts.map