UNPKG

@krebitdao/reputation-passport

Version:

Krebit SDK for Verified Credentials

20 lines 501 B
import 'isomorphic-fetch'; export interface ClientProps { query: string; variables: GetProps | ListProps; } export interface ListProps { first?: number; orderBy?: string; orderDirection?: string; where?: object; } export interface GetProps { id: string; } export declare const ens: { client: (props: ClientProps) => Promise<any>; resolveName: (name: string) => Promise<any>; lookupAddress: (address: string) => Promise<any>; }; //# sourceMappingURL=ens.d.ts.map