masto
    Preparing search index...

    Interface FetchNotificationParams

    interface FetchNotificationParams {
        supportedTypes?:
            | readonly (
                | "status"
                | "poll"
                | "quote"
                | "mention"
                | "reblog"
                | "follow"
                | "follow_request"
                | "favourite"
                | "update"
                | "quoted_update"
                | "admin.sign_up"
                | "admin.report"
                | "severed_relationships"
                | "moderation_warning"
            )[]
            | null;
    }
    Index
    supportedTypes?:
        | readonly (
            | "status"
            | "poll"
            | "quote"
            | "mention"
            | "reblog"
            | "follow"
            | "follow_request"
            | "favourite"
            | "update"
            | "quoted_update"
            | "admin.sign_up"
            | "admin.report"
            | "severed_relationships"
            | "moderation_warning"
        )[]
        | null

    Array of String. Notification types to not get fallback representation for even when some is available. Passing this parameter is required to get any notification fallback at all. When this parameter is used, and a notification which type is not included in supported_types has an available fallback representation, it will be included in the notification’s fallback attribute.