Skip to content

Commit 33f8e56

Browse files
committed
Fix CRLF issue
1 parent 0a49128 commit 33f8e56

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
interface Int<T, U> {
2-
method(x: T): U;
3-
}
4-
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
1+
interface Int<T, U> {
2+
method(x: T): U;
3+
}
4+
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
55
foo("", { method(p1) { return p1.length } }, { method(p2) { return undefined } });
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
interface Int<T, U> {
2-
[s: string]: (x: T) => U;
3-
}
4-
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
1+
interface Int<T, U> {
2+
[s: string]: (x: T) => U;
3+
}
4+
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
55
foo("", { method(p1) { return p1.length } }, { method(p2) { return undefined } });

0 commit comments

Comments
 (0)