import type { ServiceProvider } from "./types.js"; /** * Steam service provider * * Users prove ownership of their Steam account by placing their DID * in the profile "Summary" field (Edit Profile → General → Summary). * * Verification uses Steam's public profile XML endpoint * (https://steamcommunity.com/id/{vanity}/?xml=1 or /profiles/{steamID64}/?xml=1). * Unlike the rendered profile page — where the summary is injected client-side * by JavaScript and therefore not in the fetched HTML — the XML endpoint * server-renders every field (summary, personaname, avatar, etc.) with no * API key required. */ declare const steam: ServiceProvider; export default steam; //# sourceMappingURL=steam.d.ts.map