unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
18 lines • 531 B
JavaScript
export const recordUiErrorSchema = {
$id: '#/components/schemas/recordUiErrorSchema',
type: 'object',
components: {},
required: ['errorMessage'],
description: 'An object representing an error from the UI',
properties: {
errorMessage: {
type: 'string',
description: 'The error message',
},
errorStack: {
type: 'string',
description: 'The stack trace of the error',
},
},
};
//# sourceMappingURL=record-ui-error-schema.js.map