UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

10 lines (9 loc) 287 B
import { DynamoDBDocument } from "@aws-sdk/lib-dynamodb"; export type TaskKey = { id: string; service: string; }; /** * Batch delete array of tasks */ export declare function batchDeleteTasks(docClient: DynamoDBDocument, taskKeys: TaskKey[], tableName: string): Promise<void>;