Add missing types (#76)

* feat(SteamAppOverview): Add types

* feat(SliderFieldProps): Add className type

* feat(ToggleFieldProps): Add highlightOnFocus type

* feat(AppDetails): Add types for libraryAssets.logoPosition

* feat(types): Add types to some globals
This commit is contained in:
Jozen Blue Martinez
2023-02-19 03:58:50 +08:00
committed by GitHub
parent 68a46263a4
commit e559a43af9
4 changed files with 67 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import { CommonUIModule } from '../webpack';
import { ItemProps } from './Item';
export interface ToggleFieldProps extends ItemProps {
highlightOnFocus?: boolean;
checked: boolean;
disabled?: boolean;
onChange?(checked: boolean): void;