blockstack
Version:
The Blockstack Javascript library for authentication, identity, and storage.
10 lines (9 loc) • 380 B
TypeScript
import { Service, CheerioModuleType } from './service';
import { AccountProofInfo } from '../profileProofs';
declare class Github extends Service {
getBaseUrls(): string[];
normalizeUrl(_proof: AccountProofInfo): string;
getProofUrl(proof: AccountProofInfo): string;
getProofStatement(searchText: string, _cheerio: CheerioModuleType): string;
}
export { Github };