nyanimedb/modules/frontend/src/api/core/ApiResult.ts
nihonium 8e44b8b7b4
All checks were successful
Build and Deploy Go App / build (push) Successful in 6m46s
Build and Deploy Go App / deploy (push) Successful in 2m54s
feat: fetch user info
2025-10-11 04:25:57 +03:00

11 lines
300 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* 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;
};