typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
12 lines (9 loc) • 329 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.proto {
/**
* Serializes an object or a value to a protocol buffer string.
* @param {Object} object The object to serialize.
* @return {string} The serialized protocol buffer string.
*/
function serialize(object: Object): string;
}