mirror of
https://github.com/tiqi-group/pydase_service_base.git
synced 2025-04-22 09:10:02 +02:00
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
export type ApiResult = {
|
|
readonly url: string;
|
|
readonly ok: boolean;
|
|
readonly status: number;
|
|
readonly statusText: string;
|
|
readonly body: any;
|
|
};
|