Interface: ConfigurationPersistence
This interface is in charge of defining the controller that persists modifications to a collection or schema, and retrieves them back from a data source, such as local storage or Firestore.
Methods​
getCollectionConfig​
â–¸ getCollectionConfig<M
>(path
): PartialEntityCollection
<M
>
Type parameters​
Name |
---|
M |
Parameters​
Name | Type |
---|---|
path | string |
Returns​
Defined in​
models/config_persistence.tsx:38
onCollectionModified​
â–¸ onCollectionModified<M
>(path
, partialCollection
): void
Type parameters​
Name | Type |
---|---|
M | extends unknown |
Parameters​
Name | Type |
---|---|
path | string |
partialCollection | PartialEntityCollection <M > |
Returns​
void