Dockview
    Preparing search index...

    Interface IPaneviewReactProps

    interface IPaneviewReactProps {
        components: Record<string, React.FunctionComponent<IPaneviewPanelProps>>;
        headerComponents?: Record<
            string,
            FunctionComponent<IPaneviewPanelProps<any>>,
        >;
        onReady: (event: PaneviewReadyEvent) => void;
        onDidDrop?(event: PaneviewDidDropEvent): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    components: Record<string, React.FunctionComponent<IPaneviewPanelProps>>
    headerComponents?: Record<string, FunctionComponent<IPaneviewPanelProps<any>>>
    onReady: (event: PaneviewReadyEvent) => void

    Methods