UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.

9 lines (8 loc) 280 B
import { ErrorObject } from 'ajv'; import { SchemaId } from './index'; interface ISchemaValidationErrors { schema: SchemaId; errors: ErrorObject[]; } export declare const validateSchema: (schema: SchemaId, data: unknown) => ISchemaValidationErrors | undefined; export {};