🎨 Run biome after OpenAPI client generation (#1226)

This commit is contained in:
Tomer Barletz
2024-06-27 22:53:51 +03:00
committed by GitHub
parent dabeff7801
commit 960a38aeb6
13 changed files with 1419 additions and 1373 deletions

View File

@@ -1,7 +1,7 @@
export type ApiResult<TData = any> = {
readonly body: TData;
readonly ok: boolean;
readonly status: number;
readonly statusText: string;
readonly url: string;
};
readonly body: TData
readonly ok: boolean
readonly status: number
readonly statusText: string
readonly url: string
}