0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2025-03-11 13:41:24 -05:00

Add ApiResponse type

This commit is contained in:
dragongoose 2023-06-18 23:43:22 -04:00
parent c769e6a3ba
commit 3c85acfc21
No known key found for this signature in database
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
}