@minespider/core-bundles
Version:
A high-level SDK for Minespider Core. It abstract the low-level features from the core SDK for a more high-level usage such as DAPPs. Some of the features are 1:1 with the SDK some others abstract some low-level interactions or multiple actions
14 lines • 396 B
TypeScript
/// <reference types="node" />
export declare class Blob {
private content;
readonly type: string;
readonly encoding?: string;
readonly size: number;
constructor(content: Buffer, options: {
type?: string;
encoding?: string;
size?: number;
});
slice(start?: number, end?: number, contentType?: string): Blob;
}
//# sourceMappingURL=Blob.d.ts.map