fix(core): update

This commit is contained in:
2019-12-15 19:05:20 +00:00
parent 62cf2fd262
commit fe9f9299fc
4 changed files with 347 additions and 146 deletions

View File

@@ -6,7 +6,7 @@ export class Smartjson {
// ======
public static parse = JSON.parse;
public static stringify = (objArg: any, optionsArg: plugins.stableJson.Options) => {
public static stringify = (objArg: any, optionsArg: plugins.IStableJsonTypes['Options']) => {
return plugins.stableJson(objArg, optionsArg);
}