Fix CRLF issue

This commit is contained in:
Jason Freeman 2015-05-28 16:02:38 -07:00
parent 0a49128908
commit 33f8e56a44
2 changed files with 8 additions and 8 deletions

View file

@ -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 } });

View file

@ -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 } });