UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

4 lines 136 B
export default function demo (input: [number, string]): [string, number] { const foo: [string, number] = ["bar", 123]; return foo; }