Last active
June 22, 2021 22:44
-
-
Save joeltg/b46025b5175e06c1586d714dc0960443 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "signed-varint" { | |
function encode(input: number): number[] | |
function decode(input: Uint8Array, offset?: number): number | |
function encodingLength(input: number): number | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.0.1", | |
"name": "@types/signed-varint", | |
"types": "index.d.ts" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment