Skip to content

v2.20.0

Compare
Choose a tag to compare
@danez danez released this 09 Nov 21:49
· 2161 commits to main since this release

New

  • Add support for typeof types and React.* types (#224)

    Adds support for all the types described in the react flow docs

  • Resolve flow $Keys<> to union type (#225)

    const CONTENTS = {
      'apple': '🍎',
      'banana': '🍌',
    };
    type Props = {
      fruit: $Keys<typeof CONTENTS>,
    };