package python.lib; import python.KwArgs; import python.lib.Dict; import python.lib.Tuple.Tup2; @:pythonImport("json") extern class Json { public static function loads ( s:String, encoding:Null = null, cls : Null = null, object_hook:Null->Dynamic> = null ):Dict; public static function dumps (x:Dynamic, skipkeys:Bool=false, ensure_ascii:Bool=true, check_circular:Bool=true, allow_nan:Bool=true, cls:Null = null, indent:Null = null, separators:Null>, /*default*/def:NullString> = null, sort_keys:Bool=false, kw:KwArgs = null):String; }