DefinitelyTyped/jsonminify/index.d.ts
Dan Homola 901da6fac0 Add typings for jsonminify (#12447)
* Add typings for jsonminify

* Fix test string

* Strip declare module

* Simplify declaration

* Fix declaration bug

* Change test import syntax, revert the declaration
2016-11-07 05:51:05 -08:00

9 lines
284 B
TypeScript

// Type definitions for jsonminify 0.4.1
// Project: https://github.com/fkei/JSON.minify
// Definitions by: Dan Homola <https://github.com/no23reason>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function minify(json: string): string;
export = minify;