Interface AddPaneviewComponentOptions<T>

interface AddPaneviewComponentOptions<T> {
    component: string;
    headerComponent?: string;
    id: string;
    index?: number;
    isExpanded?: boolean;
    maximumBodySize?: number;
    minimumBodySize?: number;
    params?: T;
    size?: number;
    title: string;
}

Type Parameters

Properties

component: string
headerComponent?: string
id: string
index?: number
isExpanded?: boolean
maximumBodySize?: number
minimumBodySize?: number
params?: T
size?: number
title: string

Generated using TypeDoc