mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-04 16:13:38 -05:00
Fix CRLF issue
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
interface Int<T, U> {
|
||||
method(x: T): U;
|
||||
}
|
||||
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
|
||||
interface Int<T, U> {
|
||||
method(x: T): U;
|
||||
}
|
||||
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
|
||||
foo("", { method(p1) { return p1.length } }, { method(p2) { return undefined } });
|
||||
@@ -1,5 +1,5 @@
|
||||
interface Int<T, U> {
|
||||
[s: string]: (x: T) => U;
|
||||
}
|
||||
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
|
||||
interface Int<T, U> {
|
||||
[s: string]: (x: T) => U;
|
||||
}
|
||||
declare function foo<T, U>(x: T, y: Int<T, U>, z: Int<U, T>): T;
|
||||
foo("", { method(p1) { return p1.length } }, { method(p2) { return undefined } });
|
||||
Reference in New Issue
Block a user