import type { ServiceProvider } from "./types.js"; /** * Hacker News service provider * * Users can prove ownership of their Hacker News account in two ways: * 1. Add their DID to their profile's "about" field * 2. Create a comment or post containing their DID * * Fetching uses HTML scraping of HN pages for real-time verification * (HN's Firebase API has significant indexing delays). */ declare const hackernews: ServiceProvider; export default hackernews; //# sourceMappingURL=hackernews.d.ts.map