TypeScript/tests/baselines/reference/declFileOptionalInterfaceMethod.js
2014-07-15 13:08:10 -07:00

14 lines
206 B
TypeScript

//// [declFileOptionalInterfaceMethod.ts]
interface X {
f? <T>();
}
//// [declFileOptionalInterfaceMethod.js]
//// [declFileOptionalInterfaceMethod.d.ts]
interface X {
f?<T>(): any;
}