unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
22 lines • 854 B
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
export declare const batchFeaturesSchema: {
readonly $id: "#/components/schemas/batchFeaturesSchema";
readonly type: "object";
readonly description: "A list of feature flag names for batch operations";
readonly required: readonly ["features"];
readonly properties: {
readonly features: {
readonly type: "array";
readonly items: {
readonly type: "string";
};
readonly description: "List of feature flag names";
readonly example: readonly ["my-feature-4", "my-feature-5", "my-feature-6"];
};
};
readonly components: {
readonly schemas: {};
};
};
export type BatchFeaturesSchema = FromSchema<typeof batchFeaturesSchema>;
//# sourceMappingURL=batch-features-schema.d.ts.map