1// deno-lint-ignore-file 2/* istanbul ignore file */ 3/* tslint:disable */ 4/* eslint-disable */ 5export type ApiResult = { 6 readonly url: string; 7 readonly ok: boolean; 8 readonly status: number; 9 readonly statusText: string; 10 readonly body: any; 11}; 12 13