@playlive/tiltify-graphql
    Preparing search index...

    Interface TiltifySocial

    The 10 social platform handles Tiltify tracks on a user profile.

    Distinct from @playlive/tiltify-core's TiltifySocial because the GraphQL social block is non-nullable per field (each platform key is always present, even if its value is null), while the REST client's snake_case TiltifySocial is itself nullable on the parent.

    interface TiltifySocial {
        discord: string | null;
        facebook: string | null;
        instagram: string | null;
        linkedin: string | null;
        snapchat: string | null;
        tiktok: string | null;
        twitch: string | null;
        twitter: string | null;
        website: string | null;
        youtube: string | null;
    }
    Index
    discord: string | null
    facebook: string | null
    instagram: string | null
    linkedin: string | null
    snapchat: string | null
    tiktok: string | null
    twitch: string | null
    twitter: string | null
    website: string | null
    youtube: string | null