Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 412 Bytes

USAGE.md

File metadata and controls

22 lines (17 loc) · 412 Bytes
import { SteamSets } from "@steamsets/client-ts";

const steamSets = new SteamSets({
  token: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await steamSets.account.bookmarkBadge({
    badgeId: "bdg_123",
    bookmark: true,
  });

  // Handle the result
  console.log(result);
}

run();