osu-api-v2-js
    Preparing search index...

    Interface History

    API.getUserKudosuHistory

    interface History {
        action:
            | "give"
            | "vote.give"
            | "reset"
            | "vote.reset"
            | "revoke"
            | "vote.revoke";
        amount: number;
        created_at: Date;
        giver: null
        | { url: string; username: string };
        id: number;
        model: string;
        post: { title: string; url: null | string };
    }
    Index

    Properties

    action: "give" | "vote.give" | "reset" | "vote.reset" | "revoke" | "vote.revoke"
    amount: number
    created_at: Date
    giver: null | { url: string; username: string }
    id: number
    model: string

    post

    post: { title: string; url: null | string }