obby-client for TypeScript
    Preparing search index...

    Type Alias Invitation

    An invitation link to the network or to one channel.

    type Invitation = {
        channel: string | null;
        created: string | null;
        description: string | null;
        redeemed: number;
        share_id: string;
        url: string;
    }
    Index
    channel: string | null

    The channel it joins, or nothing when it invites to the network.

    created: string | null

    When it was made, as the server spells it.

    description: string | null

    What it is for.

    redeemed: number

    How many people have used it.

    share_id: string

    The identifier used to delete it.

    url: string

    The link itself.