(record: TRecord)
| 130 | const getKey = config.getKey |
| 131 | |
| 132 | const parse = (record: TRecord) => |
| 133 | convert<TRecord, TItem>(config.parse, record) |
| 134 | const serialUpd = (item: Partial<TItem>) => |
| 135 | convertPartial<TItem, TRecord>(config.serialize, item) |
| 136 | const serialIns = (item: TItem) => |