(record: AirtableRecord<TFields>)
| 143 | } |
| 144 | |
| 145 | function toSerializableRecord<TFields extends AirtableFieldSet>(record: AirtableRecord<TFields>) { |
| 146 | return { |
| 147 | id: record.id, |
| 148 | fields: record.fields, |
| 149 | commentCount: record.commentCount, |
| 150 | } as AirtableRecord<TFields>; |
| 151 | } |
| 152 | |
| 153 | function tableParams(params: { baseId: string; tableName: string }): DisplayProperty[] { |
| 154 | return [ |
no outgoing calls
no test coverage detected
searching dependent graphs…