UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

3 lines 107 B
export default function demo (input: [number, string]): [string, number] { return [input[1], input[0]]; }