@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
10 lines (9 loc) • 350 B
TypeScript
declare function createClient(): Promise<void>;
export declare function makeClient(options: ClientOptions, interactive?: boolean, basePath?: string): Promise<void>;
export { createClient };
interface ClientOptions {
title: string;
description: string;
/** The geoprocessing function to run for this Client */
functionName?: string;
}