import AbstractSearchOption from "./abstract_search_option.js";
const TPL = `
Fast search
|
|
`;
export default class FastSearch extends AbstractSearchOption {
static get optionName() { return "fastSearch" };
static get attributeType() { return "label" };
static async create(noteId) {
await AbstractSearchOption.setAttribute(noteId,'label', 'fastSearch');
}
doRender() {
return $(TPL);
}
}