Skip to content

Commit 7ed8854

Browse files
committed
Mark new interfaces with export
1 parent bda471f commit 7ed8854

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/server/protocol.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ declare module ts.server.protocol {
595595
/**
596596
* Signature help information for a single parameter
597597
*/
598-
interface SignatureHelpParameter {
598+
export interface SignatureHelpParameter {
599599

600600
/**
601601
* The parameter's name
@@ -621,7 +621,7 @@ declare module ts.server.protocol {
621621
/**
622622
* Represents a single signature to show in signature help.
623623
*/
624-
interface SignatureHelpItem {
624+
export interface SignatureHelpItem {
625625

626626
/**
627627
* Whether the signature accepts a variable number of arguments.
@@ -657,7 +657,7 @@ declare module ts.server.protocol {
657657
/**
658658
* Signation help items found in the response of a signature help request.
659659
*/
660-
interface SignatureHelpItems {
660+
export interface SignatureHelpItems {
661661

662662
/**
663663
* The signaure help items.

0 commit comments

Comments
 (0)