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

    Interface NativeDirectCallModule

    interface NativeDirectCallModule {
        accept(
            callId: string,
            options: CallOptions,
            holdActiveCall: boolean,
        ): Promise<void>;
        directCallDeleteAllCustomItems(
            callId: string,
        ): Promise<CustomItemUpdateResult>;
        directCallDeleteCustomItems(
            callId: string,
            customItemKeys: string[],
        ): Promise<CustomItemUpdateResult>;
        directCallUpdateCustomItems(
            callId: string,
            customItems: Record<string, string>,
        ): Promise<CustomItemUpdateResult>;
        end(callId: string): Promise<void>;
        updateLocalVideoView(callId: string, videoViewId: number): void;
        updateRemoteVideoView(callId: string, videoViewId: number): void;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Parameters

      • callId: string
      • videoViewId: number

      Returns void

    • Parameters

      • callId: string
      • videoViewId: number

      Returns void