* Delete the specified records. * * @param recordIds Array of recordIds. * @returns * * * #### Description * Delete the given record by recordIds. * * Throws an error if the user does not have permission to delete the given record. * * #### Example * ```js * a
(recordIds: string[])
| 527 | * ``` |
| 528 | */ |
| 529 | public async deleteRecordsAsync(recordIds: string[]) { |
| 530 | await this.modalDatasheet.deleteRecords(recordIds); |
| 531 | } |
| 532 | } |
no test coverage detected