UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

10 lines 471 B
import { IPropertyFieldMonacoEditorProps } from './IPropertyFieldMonacoEditor'; export interface IPropertyFieldMonacoEditorHostProps extends IPropertyFieldMonacoEditorProps, Omit<IPropertyFieldMonacoEditorProps, "onChange"> { onPropertyChange?: (newValue: string) => void; } export interface IPropertyFieldMonacoEditorHostState { value: string; validationErrors: string[]; showPanel: boolean; } //# sourceMappingURL=IPropertyFieldMonacoEditorHost.d.ts.map