MediaSFU Angular
    Preparing search index...

    Interface RequestsModalOptions

    interface RequestsModalOptions {
        isRequestsModalVisible: boolean;
        requestCounter: number;
        requestList: Request[];
        roomName: string;
        socket: Socket;
        backgroundColor: string;
        position: string;
        parameters: RequestsModalParameters;
        onRequestClose: () => void;
        onRequestFilterChange: (filter: string) => void;
        onRequestItemPress?: RespondToRequestsType;
        updateRequestList: (newRequestList: any[]) => void;
        overlayStyle?: Partial<CSSStyleDeclaration>;
        contentStyle?: Partial<CSSStyleDeclaration>;
        customTemplate?: any;
    }
    Index

    Properties

    isRequestsModalVisible: boolean
    requestCounter: number
    requestList: Request[]
    roomName: string
    socket: Socket
    backgroundColor: string
    position: string
    onRequestClose: () => void
    onRequestFilterChange: (filter: string) => void
    onRequestItemPress?: RespondToRequestsType
    updateRequestList: (newRequestList: any[]) => void
    overlayStyle?: Partial<CSSStyleDeclaration>
    contentStyle?: Partial<CSSStyleDeclaration>
    customTemplate?: any