| 5 | export type EndpointVariants = (typeof _ENDPOINTS)[number]; |
| 6 | |
| 7 | export interface CommandRequest { |
| 8 | method?: "GET" | "POST"; |
| 9 | body?: unknown; |
| 10 | query?: Record<string, string | number | boolean | undefined>; |
| 11 | } |
| 12 | |
| 13 | export class Command<TResult> { |
| 14 | public readonly request: CommandRequest; |
nothing calls this directly
no outgoing calls
no test coverage detected