From c4dd820564659e0880dd9b6826e538e96948a822 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Tue, 15 Aug 2017 15:19:40 +1000 Subject: [PATCH] =?UTF-8?q?export=20interfaces=20used=20by=20exported=20fu?= =?UTF-8?q?nctions=20=F0=9F=8C=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/textChanges.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/textChanges.ts b/src/services/textChanges.ts index bddfc205db4..6462b64e226 100644 --- a/src/services/textChanges.ts +++ b/src/services/textChanges.ts @@ -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 {