menu
ClipboardCommand
import { ClipboardCommand } from "destack:input/binding";
Clipboard command kind.
1export enum ClipboardCommand {2 Copy = 1,3 Cut = 2,4 Paste = 3,5}Variants
Copy = 1Copy the current selection.
Cut = 2Cut the current selection.
Paste = 3Paste from the clipboard.