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:
Name | Type | Description |
---|---|---|
C | ComponentType<any> | The type of the WebView component. |
F | FeatureClass<any, any, any>[] | The type for a collection of features classes. |