Skip to content

Instantly share code, notes, and snippets.

@rjdestigter
rjdestigter / Test.tsx
Created November 29, 2017 01:20
TypeScript React classes with generics throw Type '{}' is not assignable to type 'R'.
// Libs
import * as React from 'react'
// Types
interface Bar {
id: number
}
interface Party<R extends Bar> {
attr: keyof R