| 123456789101112 |
- import { ValidInputTypes } from '../types.js';
- /**
- * checks input if typeof data is valid Uint8Array input
- */
- export declare const isUint8Array: (data: ValidInputTypes) => boolean;
- export declare const isBytes: (value: ValidInputTypes | Uint8Array | number[], options?: {
- abiType: string;
- size?: never;
- } | {
- size: number;
- abiType?: never;
- }) => boolean;
|