UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

5 lines (4 loc) 113 B
type status = "active" | "inactive"; export default function demo (input: status): status { return "active"; }