提交 00dd098d 编写于 作者: M Matt Bierner

Mark isLocationLinkFixed as internal

上级 2f5d8889
...@@ -739,6 +739,9 @@ export interface LocationLink { ...@@ -739,6 +739,9 @@ export interface LocationLink {
targetSelectionRange?: IRange; targetSelectionRange?: IRange;
} }
/**
* @internal
*/
export function isLocationLink(thing: any): thing is LocationLink { export function isLocationLink(thing: any): thing is LocationLink {
return thing return thing
&& URI.isUri((thing as LocationLink).uri) && URI.isUri((thing as LocationLink).uri)
......
...@@ -5038,8 +5038,6 @@ declare namespace monaco.languages { ...@@ -5038,8 +5038,6 @@ declare namespace monaco.languages {
targetSelectionRange?: IRange; targetSelectionRange?: IRange;
} }
export function isLocationLink(thing: any): thing is LocationLink;
export type Definition = Location | Location[] | LocationLink[]; export type Definition = Location | Location[] | LocationLink[];
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册