interface ViewChildOpt {
    childOptions?: ChildOptions;
    selector:
        | string
        | CustomElementConstructor
        | { prototype: HTMLElement; new (): HTMLElement };
}

Properties

childOptions?: ChildOptions
selector:
    | string
    | CustomElementConstructor
    | { prototype: HTMLElement; new (): HTMLElement }