UNPKG

contenido

Version:

Contenido is a library with a set of tools to help you create your own rich text editor on top of draft-js without thinking about how to handle things.

7 lines (6 loc) 297 B
import type { Attributes, State, StateHandler } from '../../types'; type NewEntityData = Attributes | { [key: string]: any; }; declare const updateAtomicData: (state: State, stateHandler: StateHandler, entityKey: string, newData: NewEntityData) => void; export default updateAtomicData;