Merge pull request #17796 from basarat/patch-1

Fix build 🌹
This commit is contained in:
Ryan Cavanaugh 2017-08-15 11:06:33 -07:00 committed by GitHub
commit eb8f7bddc2
2 changed files with 4 additions and 4 deletions

View file

@ -866,7 +866,7 @@ namespace ts.refactor.extractMethod {
readonly node: Node;
}
interface ScopeUsages {
export interface ScopeUsages {
usages: Map<UsageEntry>;
substitutions: Map<Node>;
}

View file

@ -64,7 +64,7 @@ namespace ts.textChanges {
*/
export type ConfigurableStartEnd = ConfigurableStart & ConfigurableEnd;
interface InsertNodeOptions {
export interface InsertNodeOptions {
/**
* Text to be inserted before the new node
*/
@ -96,7 +96,7 @@ namespace ts.textChanges {
readonly range: TextRange;
}
interface ChangeNodeOptions extends ConfigurableStartEnd, InsertNodeOptions {
export interface ChangeNodeOptions extends ConfigurableStartEnd, InsertNodeOptions {
readonly useIndentationFromFile?: boolean;
}
interface ReplaceWithSingleNode extends BaseChange {
@ -111,7 +111,7 @@ namespace ts.textChanges {
readonly options?: never;
}
interface ChangeMultipleNodesOptions extends ChangeNodeOptions {
export interface ChangeMultipleNodesOptions extends ChangeNodeOptions {
nodeSeparator: string;
}
interface ReplaceWithMultipleNodes extends BaseChange {