UNPKG

@prefecthq/prefect-ui-library

Version:

This library is the Vue and Typescript component library for [Prefect 2](https://github.com/PrefectHQ/prefect) and [Prefect Cloud 2](https://www.prefect.io/cloud/). _The components and utilities in this project are not meant to be used independently_.

10 lines (9 loc) 626 B
import { Schema, SchemaProperty } from '../schemas/types/schema'; import { SchemaValue, SchemaValues } from '../schemas/types/schemaValues'; import { SchemaValuesValidationResponse } from '../schemas/types/schemaValuesValidationResponse'; import { WorkspaceApi } from '../services'; export declare class WorkspaceSchemasWorkspaceApi extends WorkspaceApi { protected routePrefix: string; validateSchemaValues(values: SchemaValues, schema: Schema): Promise<SchemaValuesValidationResponse>; validateSchemaValue(value: SchemaValue, property: SchemaProperty, schema: Schema): Promise<SchemaValuesValidationResponse>; }