import ApiCall from "./ApiCall"; const RESOURCEPATH = "/debug"; export interface DebugResponseSchema { state: number; version: string; } export default class Debug { constructor(private apiCall: ApiCall) {} async retrieve(): Promise { return this.apiCall.get(RESOURCEPATH); } }