scaffolding

This commit is contained in:
mProjectsCode 2022-05-04 17:45:42 +02:00
parent 2ed775bdd4
commit ddcc767573
13 changed files with 3717 additions and 151 deletions

6
src/api/APIResult.ts Normal file
View file

@ -0,0 +1,6 @@
export interface APIResult {
title: string,
type: string,
description?: string,
data: any,
}