manifest
Version:
The backend for AI code editors
27 lines (26 loc) • 672 B
TypeScript
export declare function getForbiddenResponse(): {
description: string;
content: {
'application/json': {
schema: {
type: string;
properties: {
message: {
type: string;
};
error: {
type: string;
};
statusCode: {
type: string;
};
};
};
example: {
message: string;
error: string;
statusCode: number;
};
};
};
};