Login: fix type

This commit is contained in:
Viktor Fomin 2023-03-17 15:18:50 +03:00
parent d4c0875892
commit bdef497cad

View File

@ -79,11 +79,16 @@ declare global {
ssoUrl: string;
}
type TThemeObj = {
accent: string;
buttons: string;
}
interface ITheme {
id: number;
accentColor: string;
buttonsMain: string;
textColor: string;
main: TThemeObj;
text: TThemeObj;
name: string;
}
interface IThemes {
limit: number;