UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

5 lines (4 loc) 139 B
import type {User, UserCollection} from "./export-type"; export default function demo (users: UserCollection): User { return users[0]; }