rm some stuff from netdef to make it work in-game

This commit is contained in:
Olivier Gagnon
2022-01-13 14:17:54 -05:00
parent ea2f2bd92b
commit 5126d72742
5 changed files with 29 additions and 30 deletions

View File

@@ -1,5 +1,3 @@
import React from 'react';
/**
* @public
*/
@@ -3883,7 +3881,6 @@ interface UserInterface {
*/
resetTheme(): void;
/**
* Get the current styles
* @remarks
@@ -6393,6 +6390,6 @@ interface UserInterfaceTheme {
* @internal
*/
interface IStyleSettings {
fontFamily: React.CSSProperties["fontFamily"];
lineHeight: React.CSSProperties["lineHeight"];
fontFamily: string;
lineHeight: number;
}