Interface ComponentConstructorOptions<Props>

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

Type Parameters

Properties

$$inline?: boolean
anchor?: Element
context?: Map<any, any>
hydrate?: boolean
intro?: boolean
props?: Props