Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 389 Bytes

File metadata and controls

21 lines (16 loc) · 389 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,
  });

  console.log(result);
}

run();