(target: Extension[], extension?: Extension)
| 15 | } |
| 16 | |
| 17 | function pushExtension(target: Extension[], extension?: Extension): void { |
| 18 | if (extension == null) return; |
| 19 | target.push(extension); |
| 20 | } |
| 21 | |
| 22 | export const fixedHeightTheme = EditorView.theme({ |
| 23 | "&": { height: "100%" }, |
no outgoing calls
no test coverage detected