import { TokenPrefix } from "../types" export interface IApiService { GetAsync(url: string, tokenPrefix: TokenPrefix): Promise, GetStringAsync(url: string, tokenPrefix: TokenPrefix): Promise, PostAsync(url: string, tokenPrefix: TokenPrefix, body: T): Promise, PostAsync(url: string, tokenPrefix: TokenPrefix): Promise, PutAsync(url: string, tokenPrefix: TokenPrefix, body: T): Promise }