messagepack
Advanced tools
Comparing version 1.1.6 to 1.1.7
@@ -37,1 +37,2 @@ import { Tag } from "./tags"; | ||
export declare function getMapHeader(buf: ReadBuffer, expect?: number): number; | ||
export declare function getRaw(buf: ReadBuffer, res: WriteBuffer): void; |
@@ -31,2 +31,3 @@ import { WriteBuffer, ReadBuffer } from "./buffer"; | ||
export declare const Str: Type<string>; | ||
export declare const Raw: Type<ArrayBuffer>; | ||
export declare const Time: Type<Date>; | ||
@@ -33,0 +34,0 @@ export declare const Arr: Collection<any[]>; |
{ | ||
"name": "messagepack", | ||
"version": "1.1.6", | ||
"version": "1.1.7", | ||
"description": "A MessagePack implementation for JavaScript.", | ||
@@ -33,7 +33,7 @@ "main": "dist/messagepack.cjs.js", | ||
"devDependencies": { | ||
"@types/node": "^9.6.2", | ||
"rollup": "^0.57.1", | ||
"rollup-plugin-tsc": "^1.1.8", | ||
"testsome": "^1.0.0" | ||
"@types/node": "^10.1.3", | ||
"rollup": "^0.59.4", | ||
"rollup-plugin-tsc": "^1.1.9", | ||
"testsome": "^1.0.1" | ||
} | ||
} |
@@ -44,2 +44,3 @@ # msgpack-js | ||
* `Map` for objects, | ||
* `Raw` for already encoded values, | ||
* `Time` for date and time values, and | ||
@@ -46,0 +47,0 @@ * `Any` for automatically detecting the type and forward it to one of the types above. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
140850
1642
105