unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
11 lines (10 loc) • 358 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const sortOrderSchema: {
readonly $id: "#/components/schemas/sortOrderSchema";
readonly type: "object";
readonly additionalProperties: {
readonly type: "number";
};
readonly components: {};
};
export declare type SortOrderSchema = FromSchema<typeof sortOrderSchema>;