IConfigPanelProps

Definition

export interface IConfigPanelProps {
    configs: { [key: string]: any },
    onSubmit: (data: { [key: string]: any }) => void
    onCancel?: () => void,
    uxpContext?: IContextProvider,
    instanceId?: string
}

Usage

import { IConfigPanelProps } from 'uxp/components';

Last updated