unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
28 lines • 1.18 kB
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
export declare const projectFlagCreatorsSchema: {
readonly $id: "#/components/schemas/projectFlagCreatorsSchema";
readonly type: "array";
readonly description: "A list of project flag creators";
readonly items: {
readonly type: "object";
readonly additionalProperties: false;
readonly required: readonly ["id", "name"];
readonly properties: {
readonly id: {
readonly type: "integer";
readonly example: 50;
readonly description: "The user id.";
};
readonly name: {
readonly description: "Name of the user. If the user has no set name, the API falls back to using the user's username (if they have one) or email (if neither name or username is set).";
readonly type: "string";
readonly example: "User";
};
};
};
readonly components: {
readonly schemas: {};
};
};
export type ProjectFlagCreatorsSchema = FromSchema<typeof projectFlagCreatorsSchema>;
//# sourceMappingURL=project-flag-creators-schema.d.ts.map