unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
33 lines (32 loc) • 940 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const patSchema: {
readonly $id: "#/components/schemas/patSchema";
readonly type: "object";
readonly properties: {
readonly id: {
readonly type: "number";
};
readonly secret: {
readonly type: "string";
};
readonly expiresAt: {
readonly type: "string";
readonly format: "date-time";
readonly nullable: true;
};
readonly createdAt: {
readonly type: "string";
readonly format: "date-time";
readonly nullable: true;
};
readonly seenAt: {
readonly type: "string";
readonly format: "date-time";
readonly nullable: true;
};
};
readonly components: {
readonly schemas: {};
};
};
export declare type PatSchema = FromSchema<typeof patSchema>;