UNPKG

@polkadot/types-codec

Version:
13 lines (12 loc) 454 B
import type { Registry } from '../types/index.js'; import { u32 } from './U32.js'; /** * @name USize * @description * A System default unsigned number, typically used in RPC to report non-consensus * data. It is a wrapper for [[U32]] as a WASM default (as generated by Rust bindings). * It is not to be used, since it created consensus mismatches. */ export declare class usize extends u32 { constructor(registry: Registry, value?: unknown); }