(packedFile: NewPackedFile)
| 171 | }; |
| 172 | |
| 173 | const cloneNewPackedFile = (packedFile: NewPackedFile): NewPackedFile => ({ |
| 174 | name: packedFile.name, |
| 175 | schemaFields: packedFile.schemaFields, |
| 176 | file_size: packedFile.file_size, |
| 177 | version: packedFile.version, |
| 178 | tableSchema: packedFile.tableSchema, |
| 179 | buffer: packedFile.buffer, |
| 180 | readBuffer: packedFile.readBuffer, |
| 181 | }); |
| 182 | |
| 183 | const loadExistingOutputPackFiles = async ( |
| 184 | packPath: string, |
no outgoing calls
no test coverage detected