UNPKG

@prisma-cms/editor

Version:
19 lines (18 loc) 688 B
export { decorator }; export default class LinkControl extends ToggleBlockType { static propTypes: { blockType: PropTypes.Requireable<string>; onChange: PropTypes.Validator<(...args: any[]) => any>; editorState: PropTypes.Validator<object>; icon: PropTypes.Validator<(...args: any[]) => any>; }; static defaultProps: { icon: import("react").ComponentType<import("material-ui/SvgIcon").SvgIconProps>; }; getCurrentEntity(): any; addLink: () => void; getCurrentAction(): (() => void) | undefined; } import decorator from './decorator'; import ToggleBlockType from '../ToggleBlockType'; import PropTypes from 'prop-types';