break.js 272 B

1234567891011
  1. var X = {
  2. perform: function<
  3. A, B, C, D, E, F, G,
  4. T: (a: A, b: B, c: C, d: D, e: E, f: F) => G // eslint-disable-line space-before-function-paren
  5. >(
  6. method: T, scope: any,
  7. a: A, b: B, c: C, d: D, e: E, f: F,
  8. ): G {
  9. }
  10. }