import { ExpandRecursively } from "../expand-recursively"; /** * A successful response from the API * * @public */ export interface SuccessResponse, M extends keyof T> { rsp: ExpandRecursively<{ stat: "ok"; api_key?: string; callback: string; } & T[M]["responseArgs"]>; }