mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
"fix" type for members in SetRightPanelPhasePayload
This commit is contained in:
parent
dac19cffce
commit
2f0caab851
1 changed files with 3 additions and 2 deletions
|
@ -14,7 +14,8 @@ See the License for the specific language governing permissions and
|
|||
limitations under the License.
|
||||
*/
|
||||
|
||||
import {VerificationRequest} from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest";
|
||||
import { VerificationRequest } from "matrix-js-sdk/src/crypto/verification/request/VerificationRequest";
|
||||
import { RoomMember } from "matrix-js-sdk/src/models/room-member";
|
||||
import { RightPanelPhases } from "../../stores/RightPanelStorePhases";
|
||||
import { ActionPayload } from "../payloads";
|
||||
import { Action } from "../actions";
|
||||
|
@ -29,7 +30,7 @@ export interface SetRightPanelPhasePayload extends ActionPayload {
|
|||
export interface SetRightPanelPhaseRefireParams {
|
||||
// XXX: Fix after the types are defiend in matrix-js-sdk
|
||||
// No appropriate types exist yet for the fields
|
||||
members?: any;
|
||||
members?: RoomMember;
|
||||
verificationRequest?: typeof VerificationRequest;
|
||||
groupId?: string;
|
||||
groupRoomId?: string;
|
||||
|
|
Loading…
Reference in a new issue