dynamo-db-local
Version:
A wrapper around Amazon's DynamoDB Local to start and stop it from Node.js.
10 lines • 374 B
TypeScript
export declare const spawn: ({ 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=module.d.ts.map