typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
29 lines (24 loc) • 964 B
TypeScript
/// <reference path="../../../globals.d.ts" />
declare module goog.json.hybrid {
/**
* Attempts to serialize the JSON string natively, falling back to
* {@code goog.json.serialize} if unsuccessful.
* @param {!Object} obj JavaScript object to serialize to JSON.
* @return {string} Resulting JSON string.
*/
function stringify(obj: Object): string;
/**
* Attempts to parse the JSON string natively, falling back to
* {@code goog.json.parse} if unsuccessful.
* @param {string} jsonString JSON string to parse.
* @return {!Object} Resulting JSON object.
*/
function parse(jsonString: string): Object;
/**
* Attempts to parse the JSON string natively, falling back to
* {@code goog.json.unsafeParse} if unsuccessful.
* @param {string} jsonString JSON string to parse.
* @return {!Object} Resulting JSON object.
*/
function unsafeParse(jsonString: string): Object;
}