UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

9 lines (6 loc) 164 B
export class User {} export type UserCollection = User[]; export default function demo (input: User): UserCollection { const saved = input; return [saved]; }