UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

9 lines (6 loc) 147 B
export default function demo (input: Symbol): Symbol { return createSymbol('wat'); } function createSymbol (label) { return Symbol(label); }