Type alias ConcreteComponent<Props, RawBindings, D, C, M, E, S>

ConcreteComponent<Props, RawBindings, D, C extends ComputedOptions, M extends MethodOptions, E extends EmitsOptions | Record<string, any[]>, S extends Record<string, any>>: ComponentOptions<Props, RawBindings, D, C, M> | FunctionalComponent<Props, E, S>

Concrete component type matches its actual value: it's either an options object, or a function. Use this where the code expects to work with actual values, e.g. checking if its a function or not. This is mostly for internal implementation code.

Type Parameters