@meshwatch/backend-core
Version:
Meshwatch backend core services.
9 lines (8 loc) • 737 B
TypeScript
import { CreateLatencyMonitor, Monitor, UpdateMonitorPayload } from '@meshwatch/types';
import * as Yup from 'yup';
import { CompleteGettingStartedTaskPayload } from '../models';
export declare const CREATE_MONITOR_SCHEMA: Yup.ObjectSchema<Yup.Shape<{}, import("@meshwatch/types").CreateMonitorBase>>;
export declare const UPDATE_MONITOR_SCHEMA: Yup.ObjectSchema<Yup.Shape<{}, Monitor>>;
export declare const CREATE_LATENCY_MONITOR_SCHEMA: Yup.ObjectSchema<Yup.Shape<{}, CreateLatencyMonitor>>;
export declare const UPDATE_LATENCY_MONITOR_SCHEMA: Yup.ObjectSchema<Yup.Shape<{}, UpdateMonitorPayload>>;
export declare const COMPLETE_GETTING_STARTED_TASK_SCHEMA: Yup.ObjectSchema<Yup.Shape<{}, CompleteGettingStartedTaskPayload>>;