(document_name, knowledge_id, document_id, loading)
| 211 | document_id: string, |
| 212 | loading?: Ref<boolean>, |
| 213 | ) => Promise<any> = (document_name, knowledge_id, document_id, loading) => { |
| 214 | return exportFile( |
| 215 | document_name.trim() + '.zip', |
| 216 | `${prefix.value}/${knowledge_id}/document/${document_id}/export_zip`, |
| 217 | {}, |
| 218 | loading, |
| 219 | ) |
| 220 | } |
| 221 | |
| 222 | const exportMulDocumentZip: ( |
| 223 | document_name: string, |
nothing calls this directly
no test coverage detected