Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot
39fdde9481 chore(release): 4.10.2 [CI SKIP] 2025-06-28 18:03:43 +00:00
AAGaming
a4627a70c5 fix(SteamClient): export shared types for enums 2025-06-28 14:03:04 -04:00
3 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
## [4.10.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.10.1...v4.10.2) (2025-06-28)
### Bug Fixes
* **SteamClient:** export shared types for enums ([a4627a7](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/a4627a70c5a60a42cd39690b3b03f2c1d79ee3b4))
## [4.10.1](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.10.0...v4.10.1) (2025-06-15)

View File

@@ -1,6 +1,6 @@
{
"name": "@decky/ui",
"version": "4.10.1",
"version": "4.10.2",
"description": "A library for interacting with the Steam frontend in Decky plugins and elsewhere.",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -1,4 +1,5 @@
import {SteamClient} from "./steam-client";
export * from "./steam-client/shared";
declare global {
var SteamClient: SteamClient;