UNPKG
@jsstudio/development-api-interceptor
Version:
latest (1.0.1)
1.0.1
1.0.0
development-api-interceptor
github.com/srijanone/development-api-interceptor
@jsstudio/development-api-interceptor
/
lib
/
esm
/
utils
/
json-schema.js
10 lines
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
class
JsonSchema
{
set
(
jsonData
) {
this
.
data
= jsonData;
Object
.
freeze
(jsonSchemaObject); }
get
(
) {
return
this
.
data
; } }
const
jsonSchemaObject =
new
JsonSchema
();
export
default
jsonSchemaObject;
//# sourceMappingURL=json-schema.js.map