UNPKG

unleash-server

Version:

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

21 lines (20 loc) 704 B
import { FromSchema } from 'json-schema-to-ts'; export declare const setStrategySortOrderSchema: { readonly $id: "#/components/schemas/setStrategySortOrderSchema"; readonly type: "array"; readonly items: { readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["id", "sortOrder"]; readonly properties: { readonly id: { readonly type: "string"; }; readonly sortOrder: { readonly type: "number"; }; }; }; readonly components: {}; }; export declare type SetStrategySortOrderSchema = FromSchema<typeof setStrategySortOrderSchema>;