@sendbird/calls-react-native
    Preparing search index...

    Interface NativeQueries

    interface NativeQueries {
        createDirectCallLogListQuery: NativeQueryCreator<
            DirectCallLogQueryParams,
        >;
        createRoomListQuery: NativeQueryCreator<RoomListQueryParams>;
        queryNext<T extends NativeQueryType>(
            key: `native#${string}`,
            type: T,
        ): NativeQueryResult<
            T extends DIRECT_CALL_LOG ? DirectCallLog : RoomProperties,
        >;
        queryRelease(key: `native#${string}`): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createDirectCallLogListQuery: NativeQueryCreator<DirectCallLogQueryParams>

    Methods