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

    Interface FeatureRequestDraft

    Draft payload for proposing a new feature request.

    const draft: FeatureRequestDraft = {
    title: 'Export data to CSV and JSON',
    description: 'Add an export button on the analytics screen to download raw metrics.',
    requesterName: 'Taylor',
    };
    interface FeatureRequestDraft {
        description: string;
        requesterName?: string;
        title: string;
    }
    Index
    description: string

    Proposed description explaining use cases and benefits (minimum 5 characters).

    requesterName?: string

    Optional author display name.

    title: string

    Proposed title (minimum 3 characters).