export interface Api { get( url: `/${string}`, init?: Omit ): Promise; post( url: `/${string}`, body: TBody, init?: Omit, ): Promise; }