@types/flatbuffers
Advanced tools
Comparing version 1.9.1 to 1.10.0
@@ -1,4 +0,5 @@ | ||
// Type definitions for flatbuffers 1.9 | ||
// Type definitions for flatbuffers 1.10 | ||
// Project: http://google.github.io/flatbuffers/index.html | ||
// Definitions by: Kamil Rojewski <kamil.rojewski@gmail.com> | ||
// Robin Giese <robin@grumpycorp.com> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -20,2 +21,3 @@ | ||
const FILE_IDENTIFIER_LENGTH: number; | ||
const SIZE_PREFIX_LENGTH: number; | ||
@@ -171,3 +173,4 @@ enum Encoding { UTF8_BYTES, UTF16_STRING } | ||
finish(root_table: Offset, file_identifier?: string): void; | ||
finish(root_table: Offset, file_identifier?: string, size_prefix?: boolean): void; | ||
finishSizePrefixed(root_table: Offset, file_identifier?: string): void; | ||
@@ -210,3 +213,3 @@ /** | ||
/** | ||
* Conveniance function for creating Long objects. | ||
* Convenience function for creating Long objects. | ||
*/ | ||
@@ -299,3 +302,3 @@ createLong(low: number, high: number): Long; | ||
/** | ||
* Conveniance function for creating Long objects. | ||
* Convenience function for creating Long objects. | ||
*/ | ||
@@ -302,0 +305,0 @@ createLong(low: number, high: number): Long; |
{ | ||
"name": "@types/flatbuffers", | ||
"version": "1.9.1", | ||
"version": "1.10.0", | ||
"description": "TypeScript definitions for flatbuffers", | ||
@@ -10,14 +10,19 @@ "license": "MIT", | ||
"url": "kamil.rojewski@gmail.com" | ||
}, | ||
{ | ||
"name": "Robin Giese", | ||
"url": "robin@grumpycorp.com" | ||
} | ||
], | ||
"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/flatbuffers" | ||
}, | ||
"scripts": {}, | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "5e9c5950289db746634ec0fea214824af1131e5619a020b794a7e70d493fd02d", | ||
"typeScriptVersion": "2.0" | ||
"typesPublisherContentHash": "4a501959d37c0653420b35adb414b2e77419fe1025615d8f988758bf84582800", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/flatbuffers | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/flatbuffers. | ||
Additional Details | ||
* Last updated: Wed, 23 Jan 2019 23:15:19 GMT | ||
### Additional Details | ||
* Last updated: Fri, 03 Jan 2020 18:11:06 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Kamil Rojewski <kamil.rojewski@gmail.com>. | ||
These definitions were written by Kamil Rojewski (kamil.rojewski@gmail.com), and Robin Giese (robin@grumpycorp.com). |
12868
251