@types/varint
TypeScript icon, indicating that this package has built-in type declarations

6.0.3 • Public • Published

Installation

npm install --save @types/varint

Summary

This package contains type definitions for varint (https://github.com/chrisdickinson/varint#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/varint.

index.d.ts

/// <reference types="node"/>

export const encode: {
    /**
     * Encodes `num` into `buffer` starting at `offset`. returns `buffer`, with the encoded varint written into it.
     * `varint.encode.bytes` will now be set to the number of bytes modified.
     */
    <TBuf extends Uint8Array | number[] = number[]>(num: number, buffer?: TBuf, offset?: number): TBuf;

    /**
     * Similar to `decode.bytes` when encoding a number it can be useful to know how many bytes where written (especially if you pass an output array).
     * You can access this via `varint.encode.bytes` which holds the number of bytes written in the last encode.
     */
    bytes: number | undefined;
};

export const decode: {
    /**
     * Decodes `data`, which can be either a buffer or array of integers, from position `offset` or default 0 and returns the decoded original integer.
     * Throws a `RangeError` when `data` does not represent a valid encoding.
     */
    (buf: Uint8Array | number[], offset?: number): number;

    /**
     * If you also require the length (number of bytes) that were required to decode the integer you can access it via `varint.decode.bytes`.
     * This is an integer property that will tell you the number of bytes that the last .decode() call had to use to decode.
     */
    bytes: number | undefined;
};

/**
 * returns the number of bytes this number will be encoded as, up to a maximum of 8.
 */
export function encodingLength(num: number): number;

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: @types/node

Credits

These definitions were written by David Brockman Smoliansky.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
6.0.34,057ts5.8
6.0.34,057ts5.7
6.0.34,057latest
6.0.34,057ts4.5
6.0.34,057ts4.6
6.0.34,057ts4.7
6.0.34,057ts4.8
6.0.34,057ts4.9
6.0.34,057ts5.0
6.0.34,057ts5.1
6.0.34,057ts5.2
6.0.34,057ts5.3
6.0.34,057ts5.4
6.0.34,057ts5.5
6.0.34,057ts5.6
6.0.34,057ts5.9
6.0.02,281ts3.4
6.0.02,281ts3.5
6.0.02,281ts3.6
6.0.02,281ts3.7
6.0.02,281ts3.8
6.0.02,281ts3.9
6.0.02,281ts4.0
6.0.11,144ts4.1
6.0.11,144ts4.2
6.0.11,144ts4.3
6.0.11,144ts4.4
5.0.0302ts2.0
5.0.0302ts2.1
5.0.0302ts2.2
5.0.0302ts2.3
5.0.0302ts2.4
5.0.0302ts2.5
5.0.0302ts2.6
5.0.0302ts2.7
5.0.0302ts2.8
5.0.0302ts2.9
5.0.0302ts3.0
5.0.0302ts3.1
5.0.0302ts3.2
5.0.0302ts3.3

Version History

VersionDownloads (Last 7 Days)Published
6.0.34,057
6.0.23
6.0.11,144
6.0.02,281
5.0.0302

Package Sidebar

Install

npm i @types/varint

Weekly Downloads

7,787

Version

6.0.3

License

MIT

Unpacked Size

5.58 kB

Total Files

5

Last publish

Collaborators

  • types