@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
14 lines • 417 B
TypeScript
import type { Quill } from 'quill';
import { ISwatchColor } from './SwatchColorPickerGroup.types';
export interface IRichTextPropertyPaneProps {
className?: string;
editor: Quill;
isOpen: boolean;
customColors?: ISwatchColor[];
onClose: () => void;
onLink: () => void;
}
export interface IRichTextPropertyPaneState {
formats: any;
}
//# sourceMappingURL=RichTextPropertyPane.types.d.ts.map