added jsdoc and SteamClient global declaration

This commit is contained in:
Tormak
2022-10-17 08:39:37 -04:00
parent d8b10a2133
commit ce3860f73b
2 changed files with 10 additions and 1 deletions

View File

@@ -22,3 +22,9 @@ export * from './TextField';
export * from './Toggle';
export * from './ToggleField';
export * from './SteamClient';
import {SteamClient} from './SteamClient'
declare global {
var SteamClient: SteamClient;
}