Riksdagsmonitor Intelligence Platform - v0.7.19
    Preparing search index...

    Minimal fetch-like response interface for transport abstraction

    interface FetchLike {
        ok: boolean;
        status: number;
        statusText: string;
        headers: { get(name: string): string };
        text(): Promise<string>;
        json(): Promise<unknown>;
    }
    Index

    Properties

    Methods

    Properties

    ok: boolean
    status: number
    statusText: string
    headers: { get(name: string): string }

    Methods