@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
10 lines • 471 B
TypeScript
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