You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-14 19:02:33 +03:00
Reorder interfaces
This commit is contained in:
@@ -34,6 +34,16 @@ import { IValidationResult, IFieldState } from '../../../elements/Validation';
|
|||||||
interface IProps {
|
interface IProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface IThemeState {
|
||||||
|
theme: string,
|
||||||
|
useSystemTheme: boolean,
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CustomThemeMessage {
|
||||||
|
isError: boolean,
|
||||||
|
text: string
|
||||||
|
};
|
||||||
|
|
||||||
interface IState extends IThemeState {
|
interface IState extends IThemeState {
|
||||||
// String displaying the current selected fontSize.
|
// String displaying the current selected fontSize.
|
||||||
// Needs to be string for things like '17.' without
|
// Needs to be string for things like '17.' without
|
||||||
@@ -44,13 +54,6 @@ interface IState extends IThemeState {
|
|||||||
useCustomFontSize: boolean,
|
useCustomFontSize: boolean,
|
||||||
}
|
}
|
||||||
|
|
||||||
export type CustomThemeMessage = {isError: boolean, text: string};
|
|
||||||
|
|
||||||
interface IThemeState {
|
|
||||||
theme: string,
|
|
||||||
useSystemTheme: boolean,
|
|
||||||
}
|
|
||||||
|
|
||||||
export default class AppearanceUserSettingsTab extends React.Component<IProps, IState> {
|
export default class AppearanceUserSettingsTab extends React.Component<IProps, IState> {
|
||||||
|
|
||||||
private themeTimer: NodeJS.Timeout;
|
private themeTimer: NodeJS.Timeout;
|
||||||
|
|||||||
Reference in New Issue
Block a user