UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

5 lines (3 loc) 134 B
export default function demo ({a, b: c, d: {e: f, g: h}}: {a: string; b: number; d: {e: string; g: number}}): string { return f; }