| 215 | } |
| 216 | |
| 217 | export interface CustomContextProvider { |
| 218 | title: string; |
| 219 | displayTitle?: string; |
| 220 | description?: string; |
| 221 | renderInlineAs?: string; |
| 222 | type?: ContextProviderType; |
| 223 | loadSubmenuItems?: ( |
| 224 | args: LoadSubmenuItemsArgs, |
| 225 | ) => Promise<ContextSubmenuItem[]>; |
| 226 | |
| 227 | getContextItems( |
| 228 | query: string, |
| 229 | extras: ContextProviderExtras, |
| 230 | ): Promise<ContextItem[]>; |
| 231 | } |
| 232 | |
| 233 | export interface ContextSubmenuItem { |
| 234 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected