UNPKG

@polkadot/types-codec

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