Naming convention fixed

This commit is contained in:
WAEL BEN ZID
2016-01-11 09:09:46 +01:00
parent a5f6fa793f
commit b3109b5c64
2 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
/// <reference path="prettyjson.d.ts" />
var options: prettyjson.IOptions,
var options: prettyjson.RendererOptions,
input: string,
output: string,
version: string;

View File

@@ -20,7 +20,7 @@ declare module prettyjson {
*
* @return {string} pretty serialized json data ready to display.
*/
export function render(data: any, options?: IOptions, indentation?: number): string;
export function render(data: any, options?: RendererOptions, indentation?: number): string;
/**
* Render pretty json from a string.
@@ -31,9 +31,9 @@ declare module prettyjson {
*
* @return {string} pretty serialized json data ready to display.
*/
export function renderString(data: string, options?: IOptions, indentation?: number): string;
export function renderString(data: string, options?: RendererOptions, indentation?: number): string;
export interface IOptions {
export interface RendererOptions {
/**
* Define behavior for Array objects