UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

7 lines (6 loc) 116 B
export type User = { name: string; }; export default function demo (input: User): string { return input.name; }