(section: SectionDef)
| 25 | * Get persisted properties for a section (properties that should be saved) |
| 26 | */ |
| 27 | export function getPersistedProperties(section: SectionDef): PropertyDef[] { |
| 28 | return section.properties.filter((p) => p.persist && !p.transient); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Get the store key for a property (uses storeKey if defined, otherwise key) |
no outgoing calls
no test coverage detected