Skip to content

Instantly share code, notes, and snippets.

@smagch
Created April 16, 2018 08:04
Show Gist options
  • Save smagch/8be2f24ade32f0366363b811e4cc2534 to your computer and use it in GitHub Desktop.
Save smagch/8be2f24ade32f0366363b811e4cc2534 to your computer and use it in GitHub Desktop.
Flow Action Key
// @flow
type Action =
| { type: 'FOO' }
| { type: 'BAR' };
type ActionKeys = $PropertyType<Action, 'type'>;
const fooType: ActionKeys = 'FOO';
const barType: ActionKeys = 'BAR';
const invalidType: ActionKeys = 'ffsdlkfjdaslfj'; // Error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment