Type alias UPlayGame

UPlayGame: {
    localizations?: Record<string, any> & {
        de-DE?: Record<string, string>;
        default?: Record<string, string>;
    };
    path: string | null;
    root: Record<string, any> & {
        defaultName: string;
        name: string;
        sort_string?: string;
        space_id?: string;
        start_game?: Record<"online" | "offline", Partial<{
            executables?: {
                path: {
                    relative: string;
                };
            }[];
        }>>;
        third_party_platform?: {
            name: string;
        };
        thumb_image?: string;
    };
}

Type declaration

  • Optional localizations?: Record<string, any> & {
        de-DE?: Record<string, string>;
        default?: Record<string, string>;
    }
  • path: string | null
  • root: Record<string, any> & {
        defaultName: string;
        name: string;
        sort_string?: string;
        space_id?: string;
        start_game?: Record<"online" | "offline", Partial<{
            executables?: {
                path: {
                    relative: string;
                };
            }[];
        }>>;
        third_party_platform?: {
            name: string;
        };
        thumb_image?: string;
    }

Generated using TypeDoc