import AbstractBulkAction from "../abstract_bulk_action.js";
const TPL = `
    | 
        
    
        Delete matched notes
     | 
    
         
            
            
         
        
        
     | 
`;
export default class DeleteNoteBulkAction extends AbstractBulkAction {
    static get actionName() { return "deleteNote"; }
    static get actionTitle() { return "Delete note"; }
    doRender() {
        return $(TPL);
    }
}