@redocly/portal-plugin-gravitee-sso
Version:
Gravitee SSO plugin for @redocly/portal
23 lines (22 loc) • 649 B
TypeScript
import type { FromSchema } from 'json-schema-to-ts';
export declare const ssoConfigSchema: {
readonly type: "object";
readonly properties: {
readonly type: {
readonly type: "string";
readonly const: "GRAVITEE";
};
readonly title: {
readonly type: "string";
};
readonly env: {
readonly type: "string";
};
readonly apiBaseUrl: {
readonly type: "string";
};
};
readonly required: readonly ["type"];
readonly additionalProperties: false;
};
export type GraviteeSsoConfig = FromSchema<typeof ssoConfigSchema>;