react-application-core
Version:
A react-based application core for the business applications.
10 lines (9 loc) • 358 B
TypeScript
import { IKeyValue } from '../definitions.interface';
/**
* @stable [06.11.2020]
*/
export declare class JsonUtils {
static readonly formatJson: (o: IKeyValue, space?: number) => string;
static readonly parseJson: <TResult = IKeyValue>(o: string) => TResult;
static readonly serializeJson: <TObject = unknown>(o: TObject) => string;
}