UNPKG

@seasketch/geoprocessing

Version:

Geoprocessing and reporting framework for SeaSketch 2.0

14 lines (13 loc) 671 B
import { Datasource } from "../../../src/types/index.js"; import ProjectClientBase from "../../../src/project/ProjectClientBase.js"; /** * Reimport one or more datasources into project. */ export declare function reimportDatasources<C extends ProjectClientBase>(projectClient: C, extraOptions: { /** Alternative path to look for datasources than default. useful for testing */ newDatasourcePath?: string; /** Alternative path to store transformed data. useful for testing */ newDstPath?: string; /** string or regular expression to express with datasources to reimport, matching on datasourceId */ matcher?: string[]; }): Promise<Datasource[]>;