@acadix/setup
Version:
Acadix Learning Management System backend application project setup
22 lines (21 loc) • 437 B
TypeScript
declare type SchemaDefinition = {
[name: string]: {
type: string;
title: string;
properties?: Record<string, {
type: string | number;
}>;
};
};
declare type Server = {
url: string;
description: string;
};
declare type Tag = {
name: string;
};
declare type Path = {
route: string;
doc: object;
};
export { SchemaDefinition, Server, Tag, Path };