UNPKG

@cloudquery/plugin-sdk-javascript

Version:

This is the high-level package to use for developing CloudQuery plugins in JavaScript

9 lines (8 loc) 296 B
import type { Plugin } from '../plugin/plugin.js'; import type { Table } from '../schema/table.js'; export declare const createMemDBClient: () => { id: () => string; memoryDB: Record<string, any[]>; tables: Record<string, Table>; }; export declare const newMemDBPlugin: () => Plugin;