Skip to content

Instantly share code, notes, and snippets.

@joshuacc
Created August 22, 2017 15:19
Show Gist options
  • Save joshuacc/990d79226e769b8567b0bb2733bb25ca to your computer and use it in GitHub Desktop.
Save joshuacc/990d79226e769b8567b0bb2733bb25ca to your computer and use it in GitHub Desktop.
import * as React from 'react';
interface Open {
isOpen: true;
selectedIndex: number;
}
interface Closed {
isOpen: false;
selectedIndex: null;
}
type MyProps = Open | Closed;
class MyComp extends React.Component<MyProps, {}> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment