UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

10 lines (9 loc) 417 B
import { Manifest } from "../manifest.js"; import { TestComponentTypes } from "./types.js"; /** * Creates project core assets in-memory, with the components requested, and returns the resulting manifest * Useful for stubbing projects for testing purposes */ export default function createTestProjectManifest(projectName: string, /** test components to add */ components: TestComponentTypes[]): Promise<Manifest>;