Skip to content

Commit 2749373

Browse files
author
Paul van Brenk
committed
trailing whitespace
1 parent 0c365da commit 2749373

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/compiler/sys.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ namespace ts {
5151
args: string[];
5252
currentDirectory: string;
5353
executingFile: string;
54-
newLine?: string;
55-
useCaseSensitiveFileNames?: boolean;
54+
newLine?: string;
55+
useCaseSensitiveFileNames?: boolean;
5656
echo(s: string): void;
5757
quit(exitCode?: number): void;
5858
fileExists(path: string): boolean;
@@ -62,8 +62,8 @@ namespace ts {
6262
readFile(path: string): string;
6363
writeFile(path: string, contents: string): void;
6464
readDirectory(path: string, extension?: string, exclude?: string[]): string[];
65-
watchFile?(path: string, callback: (path: string, removed?: boolean) => void): FileWatcher;
66-
watchDirectory?(path: string, callback: (path: string) => void, recursive?: boolean): FileWatcher;
65+
watchFile?(path: string, callback: (path: string, removed?: boolean) => void): FileWatcher;
66+
watchDirectory?(path: string, callback: (path: string) => void, recursive?: boolean): FileWatcher;
6767
};
6868

6969
export var sys: System = (function () {

0 commit comments

Comments
 (0)