import AbstractAction from "./abstract_action.js"; const TPL = ` Delete matched note `; export default class DeleteNoteSearchAction extends AbstractAction { static get actionName() { return "deleteNote"; } doRender() { return $(TPL); } }