@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
13 lines (12 loc) • 431 B
TypeScript
import { Schema } from '@taquito/michelson-encoder';
import BigNumber from 'bignumber.js';
import { ContractProvider } from './interface';
export declare class BigMapAbstraction {
private id;
private schema;
private provider;
constructor(id: BigNumber, schema: Schema, provider: ContractProvider);
get<T>(keyToEncode: string): Promise<T | undefined>;
toJSON(): string;
toString(): string;
}