find-itch-games
    Preparing search index...

    Interface IItchGame

    A game as itch describes it, shared by butler.db and on-disk receipts.

    interface IItchGame {
        id: number;
        url?: string;
        title?: string;
        shortText?: string;
        type?: IItchGameType;
        classification?: IItchGameClassification;
        coverUrl?: string;
        stillCoverUrl?: string;
        createdAt?: string;
        publishedAt?: string;
        minPrice?: number;
        canBeBought?: boolean;
        hasDemo?: boolean;
        inPressSystem?: boolean;
        platforms?: IItchPlatforms;
        user?: IItchUser;
        userId?: number;
    }
    Index
    id: number

    Site-wide unique identifier generated by itch.io.

    url?: string

    Canonical address of the game's page on itch.io.

    title?: string
    shortText?: string
    classification?: IItchGameClassification
    coverUrl?: string

    Cover url, which may be a GIF.

    stillCoverUrl?: string

    Non-gif cover url, only set when the main cover is a GIF.

    createdAt?: string
    publishedAt?: string
    minPrice?: number

    Price in cents.

    canBeBought?: boolean
    hasDemo?: boolean
    inPressSystem?: boolean
    platforms?: IItchPlatforms
    user?: IItchUser
    userId?: number