Skip to content

Commit

Permalink
Hotfix types export point
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <[email protected]>
  • Loading branch information
t3chguy committed May 10, 2024
1 parent a25cdce commit b78a1ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/@types/state_events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ export interface RoomJoinRulesEventContent {
}[];
}

/**
* @deprecated in favour of RoomJoinRulesEventContent
*/
export type IJoinRuleEventContent = RoomJoinRulesEventContent;

export interface RoomMemberEventContent {
avatar_url?: string;
displayname?: string;
Expand Down
4 changes: 4 additions & 0 deletions src/matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ export { IdentityProviderBrand, SSOAction } from "./@types/auth";
export type { ISSOFlow as SSOFlow, LoginFlow } from "./@types/auth";
export type { IHierarchyRelation as HierarchyRelation, IHierarchyRoom as HierarchyRoom } from "./@types/spaces";
export { LocationAssetType } from "./@types/location";
/**
* @deprecated in favour of RoomJoinRulesEventContent on the types export
*/
export type { RoomJoinRulesEventContent as IJoinRuleEventContent } from "./@types/state_events";

/**
* Types supporting cryptography.
Expand Down

0 comments on commit b78a1ad

Please sign in to comment.