UNPKG

typesense

Version:
17 lines (12 loc) 338 B
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<DebugResponseSchema> { return this.apiCall.get<DebugResponseSchema>(RESOURCEPATH); } }