MCPcopy Create free account
hub / github.com/Pierrad/obsidian-github-copilot / KeybindingInputProps

Interface KeybindingInputProps

src/components/KeybindingInput.tsx:21–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19export type KeybindingFormat = "codemirror" | "hotkeys-hook";
20
21interface KeybindingInputProps {
22 title: string;
23 description: string;
24 value: string;
25 onChange: (value: string) => void;
26 defaultValue?: string;
27 format?: KeybindingFormat;
28}
29
30const KeybindingInput: React.FC<KeybindingInputProps> = ({
31 title,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected