pebblebed
Version:
Simplified interactions with Google Datastore for NodeJS
7 lines (6 loc) • 323 B
TypeScript
import { IPebblebedSaveEntity } from "..";
import { Transaction } from "@google-cloud/datastore";
export default function replaceIncompleteWithAllocatedIds<T>(entities: IPebblebedSaveEntity<T>[], transaction?: Transaction | null): Promise<{
ids: (string | null)[];
newEntities: IPebblebedSaveEntity<T>[];
}>;