@types/binary-parser
Advanced tools
Comparing version 1.3.1 to 1.5.0
@@ -1,8 +0,9 @@ | ||
// Type definitions for binary-parser 1.3 | ||
// Type definitions for binary-parser 1.5 | ||
// Project: https://github.com/keichi/binary-parser | ||
// Definitions by: Benjamin Riggs <https://github.com/riggs>, | ||
// Dolan Miu <https://github.com/dolanmiu>, | ||
// Yu Shimura <https://github.com/yuhr> | ||
// Yu Shimura <https://github.com/yuhr>, | ||
// John Mark Gabriel Caguicla <https://github.com/caguiclajmg> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.8 | ||
// TypeScript Version: 3.2 | ||
@@ -33,2 +34,9 @@ /// <reference types="node" /> | ||
int64<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, bigint>; | ||
uint64<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, bigint>; | ||
int64le<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, bigint>; | ||
int64be<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, bigint>; | ||
uint64le<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, bigint>; | ||
uint64be<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, bigint>; | ||
bit1<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, number>; | ||
@@ -113,2 +121,4 @@ bit2<N extends string>(name: N, options?: Parser.Options): Parser.Next<O, N, number>; | ||
seek(length: number): Parser<O>; | ||
endianess(endianess: Parser.Endianness): Parser<O>; /* [sic] */ | ||
@@ -115,0 +125,0 @@ |
{ | ||
"name": "@types/binary-parser", | ||
"version": "1.3.1", | ||
"version": "1.5.0", | ||
"description": "TypeScript definitions for binary-parser", | ||
@@ -21,9 +21,15 @@ "license": "MIT", | ||
"githubUsername": "yuhr" | ||
}, | ||
{ | ||
"name": "John Mark Gabriel Caguicla", | ||
"url": "https://github.com/caguiclajmg", | ||
"githubUsername": "caguiclajmg" | ||
} | ||
], | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git" | ||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", | ||
"directory": "types/binary-parser" | ||
}, | ||
@@ -34,4 +40,4 @@ "scripts": {}, | ||
}, | ||
"typesPublisherContentHash": "65fb7e7f9d226ea8b31ce362382abc07afc0b903031d289ba477f5436177566a", | ||
"typeScriptVersion": "2.8" | ||
"typesPublisherContentHash": "b03961d6b34d6c0206238a6366651e5314cfaa96b8f08f53e684d36e300a748f", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -8,10 +8,10 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/binary-parser | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/binary-parser. | ||
Additional Details | ||
* Last updated: Fri, 07 Dec 2018 18:46:09 GMT | ||
* Dependencies: @types/node | ||
### Additional Details | ||
* Last updated: Wed, 05 Feb 2020 17:21:20 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
* Global values: none | ||
# Credits | ||
These definitions were written by Benjamin Riggs <https://github.com/riggs>, Dolan Miu <https://github.com/dolanmiu>, Yu Shimura <https://github.com/yuhr>. | ||
These definitions were written by Benjamin Riggs (https://github.com/riggs), Dolan Miu (https://github.com/dolanmiu), Yu Shimura (https://github.com/yuhr), and John Mark Gabriel Caguicla (https://github.com/caguiclajmg). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12364
153