(document_name, knowledge_id, document_id, loading)
| 167 | document_id: string, |
| 168 | loading?: Ref<boolean>, |
| 169 | ) => Promise<any> = (document_name, knowledge_id, document_id, loading) => { |
| 170 | return exportExcel( |
| 171 | document_name.trim() + '.xlsx', |
| 172 | `${prefix}/${knowledge_id}/document/${document_id}/export`, |
| 173 | {}, |
| 174 | loading, |
| 175 | ) |
| 176 | } |
| 177 | |
| 178 | const exportMulDocument: ( |
| 179 | document_name: string, |
nothing calls this directly
no test coverage detected