Files
Arbitrate-FrontendH5/node_modules/quill/formats/underline.js
T

8 lines
160 B
JavaScript
Raw Normal View History

2024-01-18 10:46:33 +08:00
import Inline from '../blots/inline';
class Underline extends Inline { }
Underline.blotName = 'underline';
Underline.tagName = 'U';
export default Underline;