mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-18 07:41:46 +03:00
Fix types from js-sdk
This commit is contained in:
parent
942cadc8a3
commit
60bcdd3bf8
1 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ import {
|
|||
VectorState,
|
||||
} from "../../../notifications";
|
||||
import { _t, TranslatedString } from "../../../languageHandler";
|
||||
import { IThirdPartyIdentifier, ThreepidMedium } from "matrix-js-sdk/src/@types/threepids";
|
||||
import { IThreepid, ThreepidMedium } from "matrix-js-sdk/src/@types/threepids";
|
||||
import LabelledToggleSwitch from "../elements/LabelledToggleSwitch";
|
||||
import SettingsStore from "../../../settings/SettingsStore";
|
||||
import StyledRadioButton from "../elements/StyledRadioButton";
|
||||
|
@ -101,7 +101,7 @@ interface IState {
|
|||
[category in RuleClass]?: IVectorPushRule[];
|
||||
};
|
||||
pushers?: IPusher[];
|
||||
threepids?: IThirdPartyIdentifier[];
|
||||
threepids?: IThreepid[];
|
||||
}
|
||||
|
||||
export default class Notifications extends React.PureComponent<IProps, IState> {
|
||||
|
|
Loading…
Reference in a new issue