@cloudquery/plugin-sdk-javascript
Version:
This is the high-level package to use for developing CloudQuery plugins in JavaScript
5 lines (4 loc) • 315 B
TypeScript
import type { StructRowProxy } from '@apache-arrow/esnext-esm';
import type { Table } from '../schema/table.js';
export type OverwriteFunction = (table: Table, primaryKeys: string[], record: StructRowProxy<any>) => void;
export declare const createOverwrite: (memoryDB: Record<string, any[]>) => OverwriteFunction;