Add ApiResponse type

This commit is contained in:
dragongoose 2023-06-18 23:43:22 -04:00
parent c769e6a3ba
commit 3c85acfc21
Signed by: dragongoose
GPG key ID: 50DB99B921579009

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
}