UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

17 lines 571 B
import { IPropertyFieldCodeEditorPropsInternal } from './IPropertyFieldCodeEditor'; /** * PropertyFieldCodeEditorHost properties interface */ export interface IPropertyFieldCodeEditorHostProps extends IPropertyFieldCodeEditorPropsInternal { onChange: (targetProperty?: string, newValue?: any) => void; } /** * PropertyFieldCodeEditorHost state interface */ export interface IPropertyFieldCodeEditorHostState { errorMessage?: string; openPanel?: boolean; loaded?: boolean; code?: string; } //# sourceMappingURL=IPropertyFieldCodeEditorHost.d.ts.map