Skip to main content
Module

x/polkadot/types-codec/primitive/I16.ts

Package publishing for deno.land/x/polkadot
Go to Latest
File

import { Int } from '../base/Int.ts';
/** * @name i16 * @description * A 16-bit signed integer */export class i16 extends Int.with(16) { // NOTE without this, we cannot properly determine extensions readonly __IntType = 'i16';}