typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
17 lines (13 loc) • 444 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog._string {
interface Stringifier {
/**
* Serializes an object or a value to a string.
* Agnostic to the particular format of object and string.
*
* @param {*} object The object to stringify.
* @return {string} A string representation of the input.
*/
stringify(object: any): string;
}
}