@cc98/react-ubb-editor
Version:
A ubb editor component based on react
7 lines (6 loc) • 611 B
TypeScript
import React from 'react';
import { Core as CoreType, IProps } from './components';
import createAction from './createAction';
import { ConfigType, ExtendValueType, IAction, IConfig, ICustomComponentProps, IState, IUBBButtonConfig, IUBBConfig, IUBBCustomConfig, IUBBExtendConfig } from './types';
export default function createEditor(extraConfig?: Partial<IConfig>, ignoreDefaultConfig?: boolean): React.FunctionComponent<IProps>;
export { IUBBConfig, IUBBButtonConfig, IUBBExtendConfig, IUBBCustomConfig, IConfig, ICustomComponentProps, createAction, ConfigType, ExtendValueType, IAction, IState, CoreType, };