How can I use inject and observer with the decorator syntax with TypeScript and avoid the missing properties problem?
I have a FilterHeader component that gets some stores injected: interface FilterHeaderProps { applicationStore: ApplicationStoreType; conversationsListStore: ConversationsListStoreType } @inject('applicationStore', 'conversationsListStore') @obs...
Mar 3, 2019C