import type createClient from 'openapi-fetch'; export interface Api> { getClient(): ReturnType>; } // export abstract class Api> { // protected abstract baseUrl: string; // protected abstract client: ReturnType>; // protected abstract isLoggedIn: boolean; // // getApi() { // return this.client; // } // }