| 4 | type EditorId = (typeof options.editorConfigs)[number]; |
| 5 | |
| 6 | export interface EditorFileTarget { |
| 7 | displayName: string; |
| 8 | editorIds: EditorId[]; |
| 9 | id: EditorId | "universal"; |
| 10 | path: string; |
| 11 | promptLabel: string; |
| 12 | representativeEditorId: EditorId; |
| 13 | } |
| 14 | |
| 15 | const buildPromptLabel = (path: string, editorNames: string[]) => { |
| 16 | if (editorNames.length > 1) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…