Skip to main content

Interface: PluginSettingsDetailsProps

Defined in: plugin/pluginsSlice.ts:23

Props for PluginSettingsDetailsProps component.

Properties​

data?​

readonly optional data?: object;

Defined in: plugin/pluginsSlice.ts:34

Data object representing the current state/configuration. readonly - The data object is readonly and cannot be modified.

Index Signature​

[key: string]: any

onDataChange?​

optional onDataChange?: (data: object) => void;

Defined in: plugin/pluginsSlice.ts:28

Callback function to be triggered when there's a change in data.

Parameters​

ParameterTypeDescription
data{ [key: string]: any; }The updated data object.

Returns​

void