getValuesSchemaJson
The getValuesSchemaJson
method returns a string serialization of the ValuesSchema
of the Store
.
getValuesSchemaJson(): string
returns | string | A string serialization of the |
---|
If no ValuesSchema
has been set on the Store
(or if it has been removed with the delValuesSchema
method), then it will return the serialization of an empty object, {}
.
Examples
This example serializes the ValuesSchema
of a Store
.
import {createStore} from 'tinybase';
const store = createStore().setValuesSchema({
open: {type: 'boolean', default: false},
});
console.log(store.getValuesSchemaJson());
// -> '{"open":{"type":"boolean","default":false}}'
This example serializes the ValuesSchema
of an empty Store
.
import {createStore} from 'tinybase';
const store = createStore();
console.log(store.getValuesSchemaJson());
// -> '{}'
Since
v3.0.0