Type alias NodeClassWithProps<TProps>

NodeClassWithProps<TProps>: NodeClass<Node & {
    [K in keyof TProps]: InstanceType<TProps[K]>
}>

Type helping in converting of propTypes to actual class properties.

Type Parameters

  • TProps extends Record<string, Class<any>>

Generated using TypeDoc