unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
22 lines (21 loc) • 674 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const patchSchema: {
readonly $id: "#/components/schemas/patchSchema";
readonly type: "object";
readonly required: readonly ["path", "op"];
readonly properties: {
readonly path: {
readonly type: "string";
};
readonly op: {
readonly type: "string";
readonly enum: readonly ["add", "remove", "replace", "copy", "move"];
};
readonly from: {
readonly type: "string";
};
readonly value: {};
};
readonly components: {};
};
export declare type PatchSchema = FromSchema<typeof patchSchema>;