mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
14 lines
144 B
JavaScript
14 lines
144 B
JavaScript
/**
|
|
* Outer constructor.
|
|
* @constructor
|
|
*/
|
|
function Outer() {
|
|
}
|
|
|
|
/**
|
|
* Inner constructor.
|
|
* @constructor
|
|
*/
|
|
Outer.Inner = function() {
|
|
};
|