@acadix/setup
Version:
Acadix Learning Management System backend application project setup
65 lines (64 loc) • 1.8 kB
TypeScript
import { DocSchemaType } from "..";
declare const componentDocs: (schemas: DocSchemaType) => {
components: {
schemas: {
successResponse: {
type: string;
properties: {
status: {
type: string;
};
message: {
type: string;
};
data: {
type: string;
};
};
};
errorResponse: {
type: string;
properties: {
status: {
type: string;
};
message: {
type: string;
};
code: {
type: string;
};
};
};
serverError: {
type: string;
properties: {
status: {
type: string;
};
message: {
type: string;
};
code: {
type: string;
};
};
};
};
securitySchemes: {
BearerAuth: {
type: string;
in: string;
scheme: string;
name: string;
bearerFormat: string;
};
CookieAuth: {
type: string;
in: string;
name: string;
};
};
};
};
export default componentDocs;