UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

9 lines (8 loc) 133 B
function countArgs(...args: number): number { return args.length; } export default function test(): number { return countArgs(); }