@instructure/canvas-rce
Version:
A component wrapping Canvas's usage of Tinymce
9 lines (8 loc) • 407 B
TypeScript
import { Editor } from 'tinymce';
import { ListStyleTypeValue } from '../core/ListUtils';
import { ExtractRequired } from '../../../../util/ExtractRequired';
/**
* Supported list style types by the RCE
*/
export type RceListTypeInfoKey = ExtractRequired<ListStyleTypeValue, 'disc' | 'circle' | 'square' | 'decimal' | 'upper-alpha' | 'upper-roman'>;
export default function register(editor: Editor): void;