@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
10 lines • 350 B
TypeScript
import { Blob } from "./Blob";
export declare class File extends Blob {
readonly bits: number[];
readonly name: string;
readonly lastModified: number;
readonly size: number;
readonly type: string;
constructor(bits: number[], name: string, lastModified: number, size: number, type: string);
}
//# sourceMappingURL=File.d.ts.map