ClipboardCommand import { ClipboardCommand } from "destack:input/binding"; Clipboard command kind. export enum ClipboardCommand { Copy = 1, Cut = 2, Paste = 3, } language/library/src/input/binding/text.ds:197:204 Variants Copy = 1 Copy the current selection. Cut = 2 Cut the current selection. Paste = 3 Paste from the clipboard.