Interface IRenderer<T>

A renderer for use with a tab bar.

interface IRenderer<T> {
    closeIconSelector: string;
    renderTab(data): VirtualElement;
}

Type Parameters

  • T

Implemented by

Properties

Methods

Properties

closeIconSelector: string

A selector which matches the close icon node in a tab.

Methods