Interface ComponentConstructorOptions<Props>
interface ComponentConstructorOptions<
Props extends Record<string, any> = Record<string, any>,
> {
$$inline?: boolean;
anchor?: Element;
context?: Map<any, any>;
hydrate?: boolean;
intro?: boolean;
props?: Props;
target: ShadowRoot | Element | Document;
}
Props extends Record<string, any> = Record<string, any>,
> {
$$inline?: boolean;
anchor?: Element;
context?: Map<any, any>;
hydrate?: boolean;
intro?: boolean;
props?: Props;
target: ShadowRoot | Element | Document;
}