@stacks/auth
Version:
Authentication for Stacks apps.
10 lines (9 loc) • 372 B
TypeScript
import { NetworkClientParam } from '@stacks/network';
export interface ProfileLookupOptions {
username: string;
zoneFileLookupURL?: string;
}
export declare function lookupProfile(options: ProfileLookupOptions & NetworkClientParam): Promise<Record<string, any>>;
export declare function getNameInfo(opts: {
name: string;
} & NetworkClientParam): Promise<any>;