UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

7 lines (6 loc) 104 B
interface User { name: string }; export default function demo (input: User): User { return input; }