interface Ok extends Data.Case { readonly _tag: 'Ok'; readonly data: any; // this should be T}export const Ok = Data.tagged<Ok>('Ok');export type HttpResponse = Redirect | Ok;export const matchHttpResponse = Match.typeTags<HttpResponse>();
interface Ok extends Data.Case { readonly _tag: 'Ok'; readonly data: any; // this should be T}export const Ok = Data.tagged<Ok>('Ok');export type HttpResponse = Redirect | Ok;export const matchHttpResponse = Match.typeTags<HttpResponse>();