@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
9 lines (8 loc) • 303 B
TypeScript
import { z } from "zod";
export type Nullable<T> = T | null;
export type ISO8601Duration = string;
export type ISO8601DateTime = string;
export type JSONValue = string | number | boolean | null | {
[x: string]: JSONValue;
} | Array<JSONValue>;
export declare const jsonSchema: z.ZodType<JSONValue>;