File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -866,7 +866,7 @@ namespace ts.refactor.extractMethod {
866866 readonly node : Node ;
867867 }
868868
869- interface ScopeUsages {
869+ export interface ScopeUsages {
870870 usages : Map < UsageEntry > ;
871871 substitutions : Map < Node > ;
872872 }
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ namespace ts.textChanges {
6464 */
6565 export type ConfigurableStartEnd = ConfigurableStart & ConfigurableEnd ;
6666
67- interface InsertNodeOptions {
67+ export interface InsertNodeOptions {
6868 /**
6969 * Text to be inserted before the new node
7070 */
@@ -96,7 +96,7 @@ namespace ts.textChanges {
9696 readonly range : TextRange ;
9797 }
9898
99- interface ChangeNodeOptions extends ConfigurableStartEnd , InsertNodeOptions {
99+ export interface ChangeNodeOptions extends ConfigurableStartEnd , InsertNodeOptions {
100100 readonly useIndentationFromFile ?: boolean ;
101101 }
102102 interface ReplaceWithSingleNode extends BaseChange {
@@ -111,7 +111,7 @@ namespace ts.textChanges {
111111 readonly options ?: never ;
112112 }
113113
114- interface ChangeMultipleNodesOptions extends ChangeNodeOptions {
114+ export interface ChangeMultipleNodesOptions extends ChangeNodeOptions {
115115 nodeSeparator : string ;
116116 }
117117 interface ReplaceWithMultipleNodes extends BaseChange {
You can’t perform that action at this time.
0 commit comments