safetwitch/src/types/ApiResponse.ts

6 lines
106 B
TypeScript
Raw Normal View History

2023-06-18 23:43:22 -04:00
import type * as all from "./"
export interface ApiResponse {
status: "ok" | "error",
data: any
}