TypeScript/tests/cases/compiler/es6modulekindWithES5Target6.ts
2016-06-08 16:46:55 -07:00

11 lines
148 B
TypeScript

// @target: es5
// @module: es2015
export function f1(d = 0) {
}
export function f2(...arg) {
}
export default function f3(d = 0) {
}