Add ApiResponse type

This commit is contained in:
dragongoose
2023-06-18 23:43:22 -04:00
parent c769e6a3ba
commit 3c85acfc21

6
src/types/ApiResponse.ts Normal file
View File

@ -0,0 +1,6 @@
import type * as all from "./"
export interface ApiResponse {
status: "ok" | "error",
data: any
}