(option: CommandOption, category: string)
| 66 | } |
| 67 | |
| 68 | const createCommandEntry = (option: CommandOption, category: string): Entry => ({ |
| 69 | id: "command:" + option.id, |
| 70 | type: "command", |
| 71 | title: option.title, |
| 72 | description: option.description, |
| 73 | keybind: option.keybind, |
| 74 | category, |
| 75 | option, |
| 76 | }) |
| 77 | |
| 78 | const createFileEntry = (path: string, category: string): Entry => ({ |
| 79 | id: "file:" + path, |
no outgoing calls
no test coverage detected