Open cleavera opened 6 years ago
The inputs and outputs for the ngx-monaco-editor component are not typed
@Input('options') set options(options: any) { ... @Output() onInit = new EventEmitter<any>();
The output appears to be an monaco.editor.IStandaloneCodeEditor and the input looks to be some kind of custom interface.
monaco.editor.IStandaloneCodeEditor
Would it be possible to type these and export the types so that I can add some type safety to my app (rather than using any)
Same problem for me. Had to use skipLibCheck on tsconfig.json to make it work.
Types would be very helpful to understand what can be used here.
The inputs and outputs for the ngx-monaco-editor component are not typed
The output appears to be an
monaco.editor.IStandaloneCodeEditor
and the input looks to be some kind of custom interface.Would it be possible to type these and export the types so that I can add some type safety to my app (rather than using any)