CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface PublicAppSummary

    Summary representation of an application listed on a public user or developer profile.

    const app: PublicAppSummary = {
    id: 'app_1',
    name: 'Focus Timer Pro',
    slug: 'focus-timer-pro',
    description: 'Pomodoro timer with cloud sync',
    requestCount: 12,
    };
    interface PublicAppSummary {
        description?: string | null;
        iconUrl?: string | null;
        id: string;
        name: string;
        requestCount: number;
        slug: string;
    }
    Index
    description?: string | null

    Short description of the application.

    iconUrl?: string | null

    CDN icon URL.

    id: string

    Application ID.

    name: string

    Display name of the application.

    requestCount: number

    Total number of public feature requests for this application.

    slug: string

    URL slug for the application.