Skip to content

Commit 2e37ceb

Browse files
Remove a few exports (microsoft#165106)
Ref microsoft#164941
1 parent dbbf526 commit 2e37ceb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/vs/base/browser/ui/findinput/replaceInput.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface IReplaceInputStyles extends IInputBoxStyles {
4242
const NLS_DEFAULT_LABEL = nls.localize('defaultLabel', "input");
4343
const NLS_PRESERVE_CASE_LABEL = nls.localize('label.preserveCaseToggle', "Preserve Case");
4444

45-
export class PreserveCaseToggle extends Toggle {
45+
class PreserveCaseToggle extends Toggle {
4646
constructor(opts: IFindInputToggleOpts) {
4747
super({
4848
// TODO: does this need its own icon?

src/vs/base/node/powershell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export interface IPowerShellExeDetails {
7979
readonly exePath: string;
8080
}
8181

82-
export interface IPossiblePowerShellExe extends IPowerShellExeDetails {
82+
interface IPossiblePowerShellExe extends IPowerShellExeDetails {
8383
exists(): Promise<boolean>;
8484
}
8585

src/vs/editor/common/services/editorSimpleWorker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export interface ICommonModel extends ILinkComputerTarget, IMirrorModel {
7979
* Range of a word inside a model.
8080
* @internal
8181
*/
82-
export interface IWordRange {
82+
interface IWordRange {
8383
/**
8484
* The index where the word starts.
8585
*/

0 commit comments

Comments
 (0)