@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
17 lines (16 loc) • 627 B
TypeScript
import { ExecutionMode } from "../../src/types/index.js";
declare function createFunction(): Promise<void>;
export declare function makeGeoprocessingHandler(options: GPOptions, interactive?: boolean, basePath?: string): Promise<void>;
export declare function makePreprocessingHandler(options: PreprocessingOptions, interactive?: boolean, basePath?: string): Promise<void>;
export { createFunction };
interface GPOptions {
title: string;
executionMode: ExecutionMode;
description: string;
}
interface PreprocessingOptions {
title: string;
description: string;
clipToEez: "yes" | "no";
eez: string;
}