We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bfddf0 commit d06523cCopy full SHA for d06523c
lib/adapters/datatip-adapter.ts
@@ -1,4 +1,5 @@
1
import * as atomIde from 'atom-ide';
2
+import type { MarkedString as AtomMarkedString } from 'atom-ide-base'
3
import Convert from '../convert';
4
import * as Utils from '../utils';
5
import {
@@ -72,7 +73,7 @@ export default class DatatipAdapter {
72
73
private static convertMarkedString(
74
editor: TextEditor,
75
markedString: MarkedString | MarkupContent,
- ): atomIde.MarkedString {
76
+ ): AtomMarkedString {
77
if (typeof markedString === 'string') {
78
return { type: 'markdown', value: markedString };
79
}
0 commit comments