@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
12 lines (11 loc) • 391 B
TypeScript
import { ExecutionMode } from "../../src/types/index.js";
declare const createReport: () => Promise<any>;
export declare function makeReport(options: ReportOptions, interactive?: boolean, basePath?: string): Promise<void>;
export { createReport };
interface ReportOptions {
type: string;
stat?: string;
title: string;
executionMode: ExecutionMode;
description: string;
}