import AbstractSearchOption from "./abstract_search_option.js"; import { t } from "../../services/i18n.js"; const TPL = /*html*/` ${t("fast_search.fast_search")} `; export default class FastSearch extends AbstractSearchOption { static async create(noteId: string) { await AbstractSearchOption.setAttribute(noteId, "label", "fastSearch"); } doRender() { return $(TPL); } }