You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Fix types from js-sdk
This commit is contained in:
@@ -26,7 +26,7 @@ import {
|
|||||||
VectorState,
|
VectorState,
|
||||||
} from "../../../notifications";
|
} from "../../../notifications";
|
||||||
import { _t, TranslatedString } from "../../../languageHandler";
|
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 LabelledToggleSwitch from "../elements/LabelledToggleSwitch";
|
||||||
import SettingsStore from "../../../settings/SettingsStore";
|
import SettingsStore from "../../../settings/SettingsStore";
|
||||||
import StyledRadioButton from "../elements/StyledRadioButton";
|
import StyledRadioButton from "../elements/StyledRadioButton";
|
||||||
@@ -101,7 +101,7 @@ interface IState {
|
|||||||
[category in RuleClass]?: IVectorPushRule[];
|
[category in RuleClass]?: IVectorPushRule[];
|
||||||
};
|
};
|
||||||
pushers?: IPusher[];
|
pushers?: IPusher[];
|
||||||
threepids?: IThirdPartyIdentifier[];
|
threepids?: IThreepid[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class Notifications extends React.PureComponent<IProps, IState> {
|
export default class Notifications extends React.PureComponent<IProps, IState> {
|
||||||
|
|||||||
Reference in New Issue
Block a user