UNPKG

unleash-server

Version:

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

13 lines (12 loc) 385 B
import { FromSchema } from 'json-schema-to-ts'; export declare const dateSchema: { readonly $id: "#/components/schemas/dateSchema"; readonly oneOf: readonly [{ readonly type: "string"; readonly format: "date-time"; }, { readonly type: "number"; }]; readonly components: {}; }; export declare type DateSchema = FromSchema<typeof dateSchema>;