(prop: PropertyDef)
| 32 | * Get the store key for a property (uses storeKey if defined, otherwise key) |
| 33 | */ |
| 34 | export function getStoreKey(prop: PropertyDef): string { |
| 35 | return prop.storeKey ?? prop.key; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Build shareable fields map from registry. |
no outgoing calls
no test coverage detected