@meshwatch/backend-core
Version:
Meshwatch backend core services.
7 lines (6 loc) • 324 B
TypeScript
import { CreateStatusPageDTO } from '@meshwatch/types';
import * as Yup from 'yup';
export declare const CREATE_STATUS_PAGE_SCHEMA: Yup.ObjectSchema<Yup.Shape<object, CreateStatusPageDTO>>;
export declare const UPDATE_STATUS_PAGE_SCHEMA: Yup.ObjectSchema<Yup.Shape<object, CreateStatusPageDTO & {
id: string;
}>>;