(
config: InlayHintsConfig = {},
)
| 327 | } |
| 328 | |
| 329 | export function inlayHintsEditorExtension( |
| 330 | config: InlayHintsConfig = {}, |
| 331 | ): Extension { |
| 332 | if (config.enabled === false) return []; |
| 333 | return [hintsField, createPlugin(config), styles]; |
| 334 | } |
| 335 | |
| 336 | export function inlayHintsExtension( |
| 337 | config: InlayHintsConfig = {}, |
no test coverage detected