find-itch-games
    Preparing search index...

    Interface IItchLaunchCandidate

    A launchable target butler found while scanning an install folder.

    path is relative to the install folder; use getLaunchCandidatePaths() to resolve it.

    interface IItchLaunchCandidate {
        path: string;
        mode?: number;
        depth?: number;
        flavor?: IItchFlavor;
        arch?: IItchArch;
        size?: number;
        spell?: string[];
        windowsInfo?: IItchWindowsInfo;
        linuxInfo?: IItchLinuxInfo;
        macosInfo?: IItchMacosInfo;
        loveInfo?: IItchLoveInfo;
        scriptInfo?: IItchScriptInfo;
        jarInfo?: IItchJarInfo;
        metadata?: Record<string, unknown>;
    }
    Index
    path: string
    mode?: number

    File permission bits.

    depth?: number

    Number of path elements leading up to this candidate.

    flavor?: IItchFlavor
    arch?: IItchArch
    size?: number
    spell?: string[]

    Raw output from itch's wizardry file-type detection.

    windowsInfo?: IItchWindowsInfo
    linuxInfo?: IItchLinuxInfo
    macosInfo?: IItchMacosInfo
    loveInfo?: IItchLoveInfo
    scriptInfo?: IItchScriptInfo
    jarInfo?: IItchJarInfo
    metadata?: Record<string, unknown>