unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
15 lines (14 loc) • 502 B
TypeScript
import { FromSchema } from 'json-schema-to-ts';
export declare const updateApiTokenSchema: {
readonly $id: "#/components/schemas/updateApiTokenSchema";
readonly type: "object";
readonly required: readonly ["expiresAt"];
readonly properties: {
readonly expiresAt: {
readonly type: "string";
readonly format: "date-time";
};
};
readonly components: {};
};
export declare type UpdateApiTokenSchema = FromSchema<typeof updateApiTokenSchema>;