Interface SlidingPanelContent<T>

Represents the content of a sliding panel.

interface SlidingPanelContent<T> {
    customElementName?: string;
    instanceClass?: Type<T>;
}

Type Parameters

  • T

Properties

customElementName?: string

The name of a custom element to be created in the content pane.

instanceClass?: Type<T>

An Angular component to be included in the content pane.