Notes/src/public/app/widgets/buttons/llm_chat_button.ts

16 lines
382 B
TypeScript
Raw Normal View History

import type FNote from "../../entities/fnote.js";
import CommandButtonWidget from "./command_button.js";
export default class LlmChatButton extends CommandButtonWidget {
constructor(note: FNote) {
super();
this.command("showLlmChat")
.title(() => note.title)
.icon(() => note.getIcon())
.class("launcher-button");
}
}