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.
31 lines (30 loc) • 945 B
text/typescript
export * from './blockRendererFn';
export * from './blockStyleFn';
export * from './initialBlockStyle';
export * from './initialBlockTypes';
export * from './isBlockquote';
export * from './isH1';
export * from './isH2';
export * from './isH3';
export * from './isH4';
export * from './isH5';
export * from './isH6';
export * from './isOL';
export * from './isParagraph';
export * from './isTextCenterAligned';
export * from './isTextJustifyAligned';
export * from './isTextLeftAligned';
export * from './isTextRightAligned';
export * from './isUL';
export * from './toggleBlockType';
export * from './toggleBlockquote';
export * from './toggleH1';
export * from './toggleH2';
export * from './toggleH3';
export * from './toggleH4';
export * from './toggleH5';
export * from './toggleH6';
export * from './toggleOL';
export * from './toggleParagraph';
export * from './toggleTextAlign';
export * from './toggleUL';