@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
13 lines (12 loc) • 557 B
TypeScript
import { GeoprocessingStack } from "./GeoprocessingStack.js";
import { GpProjectFunctions, GpSocketFunctions, GpDynamoTables, GpPublicBuckets } from "./types.js";
export interface CreateFunctionOptions {
clientDistributionUrl?: string;
publicBuckets: GpPublicBuckets;
tables: GpDynamoTables;
}
/**
* Create Lambda function constructs core to project
*/
export declare const createProjectFunctions: (stack: GeoprocessingStack) => GpProjectFunctions;
export declare const createSocketFunctions: (stack: GeoprocessingStack) => GpSocketFunctions;