import type { ServiceProvider } from "./types.js"; /** * Reddit service provider * * Users prove ownership of their Reddit account by creating a public post * containing their DID. The post URL is used as the claim URI. * * Fetching uses Reddit's JSON API (append .json to any URL) which provides * public post data without authentication. */ declare const reddit: ServiceProvider; export default reddit; //# sourceMappingURL=reddit.d.ts.map