UNPKG

@draft-js-plugins/editor

Version:
10 lines (9 loc) 322 B
import { ComponentType } from 'react'; type WrappedComponentType = ComponentType<any> & { WrappedComponent?: ComponentType<any>; }; interface ParamFunction { (param: WrappedComponentType): WrappedComponentType; } export default function composeDecorators(...funcs: Array<ParamFunction>): ParamFunction; export {};