mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2026-02-01 17:21:20 +00:00
6.0.2
This commit is contained in:
parent
f91c432a49
commit
0754825339
6
dist/protobuf.js
vendored
6
dist/protobuf.js
vendored
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* protobuf.js v6.0.1 (c) 2016 Daniel Wirtz
|
||||
* Compiled Mon, 05 Dec 2016 16:22:47 UTC
|
||||
* protobuf.js v6.0.2 (c) 2016 Daniel Wirtz
|
||||
* Compiled Mon, 05 Dec 2016 19:04:43 UTC
|
||||
* Licensed under the Apache License, Version 2.0
|
||||
* see: https://github.com/dcodeIO/protobuf.js for details
|
||||
*/
|
||||
@ -687,7 +687,7 @@ util.props(EnumPrototype, {
|
||||
* Gets this enum's values by id. This is an alias of {@link Enum#valuesById}'s getter for use within non-ES5 environments.
|
||||
* @name Enum#getValuesById
|
||||
* @function
|
||||
* @returns {Object.<number.string>}
|
||||
* @returns {Object.<number,string>}
|
||||
*/
|
||||
});
|
||||
|
||||
|
||||
2
dist/protobuf.js.map
vendored
2
dist/protobuf.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/protobuf.min.js
vendored
4
dist/protobuf.min.js
vendored
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* protobuf.js v6.0.1 (c) 2016 Daniel Wirtz
|
||||
* Compiled Mon, 05 Dec 2016 16:22:47 UTC
|
||||
* protobuf.js v6.0.2 (c) 2016 Daniel Wirtz
|
||||
* Compiled Mon, 05 Dec 2016 19:04:43 UTC
|
||||
* Licensed under the Apache License, Version 2.0
|
||||
* see: https://github.com/dcodeIO/protobuf.js for details
|
||||
*/
|
||||
|
||||
BIN
dist/protobuf.min.js.gz
vendored
BIN
dist/protobuf.min.js.gz
vendored
Binary file not shown.
2
dist/protobuf.min.js.map
vendored
2
dist/protobuf.min.js.map
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "protobufjs",
|
||||
"version": "6.0.1",
|
||||
"version": "6.0.2",
|
||||
"description": "Protocol Buffers for JavaScript.",
|
||||
"author": "Daniel Wirtz",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@ -62,7 +62,7 @@ util.props(EnumPrototype, {
|
||||
* Gets this enum's values by id. This is an alias of {@link Enum#valuesById}'s getter for use within non-ES5 environments.
|
||||
* @name Enum#getValuesById
|
||||
* @function
|
||||
* @returns {Object.<number.string>}
|
||||
* @returns {Object.<number,string>}
|
||||
*/
|
||||
});
|
||||
|
||||
|
||||
33
types/protobuf.js.d.ts
vendored
33
types/protobuf.js.d.ts
vendored
@ -2,8 +2,8 @@
|
||||
/// <reference types="long" />
|
||||
|
||||
/*
|
||||
* protobuf.js v6.0.1 TypeScript definitions
|
||||
* Generated Sun, 04 Dec 2016 14:04:03 UTC
|
||||
* protobuf.js v6.0.2 TypeScript definitions
|
||||
* Generated Mon, 05 Dec 2016 19:04:50 UTC
|
||||
*/
|
||||
declare module "protobufjs" {
|
||||
|
||||
@ -102,6 +102,14 @@ declare module "protobufjs" {
|
||||
*/
|
||||
valuesById: { [k: number]: string };
|
||||
|
||||
/**
|
||||
* Gets this enum's values by id. This is an alias of {@link Enum#valuesById}'s getter for use within non-ES5 environments.
|
||||
* @name Enum#getValuesById
|
||||
* @function
|
||||
* @returns {Object.<number,string>}
|
||||
*/
|
||||
getValuesById(): { [k: number]: string };
|
||||
|
||||
/**
|
||||
* Tests if the specified JSON object describes an enum.
|
||||
* @param {*} json JSON object to test
|
||||
@ -264,6 +272,14 @@ declare module "protobufjs" {
|
||||
*/
|
||||
packed: boolean;
|
||||
|
||||
/**
|
||||
* Determines whether this field is packed. This is an alias of {@link Field#packed}'s getter for use within non-ES5 environments.
|
||||
* @name Field#isPacked
|
||||
* @function
|
||||
* @returns {boolean}
|
||||
*/
|
||||
isPacked(): boolean;
|
||||
|
||||
/**
|
||||
* Tests if the specified JSON object describes a field.
|
||||
* @param {*} json Any JSON object to test
|
||||
@ -1816,13 +1832,6 @@ declare module "protobufjs" {
|
||||
*/
|
||||
constructor();
|
||||
|
||||
/**
|
||||
* Configures the writer interface according to the environment.
|
||||
* @memberof Writer
|
||||
* @returns {undefined}
|
||||
*/
|
||||
static configure(): undefined;
|
||||
|
||||
/**
|
||||
* Current length.
|
||||
* @type {number}
|
||||
@ -1842,10 +1851,10 @@ declare module "protobufjs" {
|
||||
tail: Object;
|
||||
|
||||
/**
|
||||
* State stack.
|
||||
* @type {Object[]}
|
||||
* Linked forked states.
|
||||
* @type {?Object}
|
||||
*/
|
||||
stack: Object[];
|
||||
states: Object;
|
||||
|
||||
/**
|
||||
* Pushes a new operation to the queue.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user