Type alias: ExtractWebshellFromFeatClass<C, F>

Ƭ ExtractWebshellFromFeatClass<C, F>: WebshellComponent<C, ExtractFeatureFromClass<F[number]>[]>

A lookup type to get the shell component from WebView and feature classes.

example

type MyShellComponent = ExtractWebshellFromFeatClass<
typeof WebView,
[typeof HandleElementCSSBoxFeature]
>;

Type parameters:

NameTypeDescription
CComponentType<any>The type of the WebView component.
FFeatureClass<any, any, any>[]The type for a collection of features classes.