react-native-matrix-crypto
    Preparing search index...

    Interface AccountDataEntry

    One global account data event, as your homeserver stores it.

    content is the event's content object, already parsed: exactly the body of a PUT /_matrix/client/v3/user/{userId}/account_data/{eventType} and exactly what the matching GET answers with. This library adds no envelope of its own, so these values move to and from your homeserver unchanged.

    interface AccountDataEntry {
        content: unknown;
        eventType: string;
    }
    Index
    content: unknown

    The event's content object.

    eventType: string

    The global account data event type, such as 'm.secret_storage.default_key'.