6 lines
368 B
TypeScript
6 lines
368 B
TypeScript
|
import type { BytesLike } from "./types.js";
|
||
|
export declare function concat(datas: ReadonlyArray<BytesLike>): string;
|
||
|
export declare function dataLength(data: BytesLike): number;
|
||
|
export declare function dataSlice(data: BytesLike, start?: number, end?: number): string;
|
||
|
export declare function stripZerosLeft(data: BytesLike): string;
|
||
|
//# sourceMappingURL=data.d.ts.map
|