UNPKG

babel-plugin-typecheck

Version:

Transforms flow type annotations into runtime type checks.

10 lines 185 B
export default function demo (options?: { option1?: string, option2?: boolean, option3?: number } = { option3: undefined }) { return options; }