dynamo-db-local
Version: 
A wrapper around Amazon's DynamoDB Local to start and stop it from Node.js.
11 lines • 486 B
TypeScript
import type { spawn as spawnFunction } from 'child_process';
export declare const createSpawn: (cwd: string, spawn: typeof spawnFunction) => ({ command, detached, name, path, port, sharedDb, stdio }?: Partial<{
    command: "docker" | "java";
    detached: boolean;
    name: null | string;
    path: null | string;
    port: null | number;
    sharedDb: boolean;
    stdio: "ignore" | "inherit" | "pipe";
}>) => import("child_process").ChildProcess;
//# sourceMappingURL=spawn.d.ts.map