mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* TinyMCE typings * TinyMCE declaration file * Update tsconfig.json Changed `strictNullChecks` to true and added `noImplicitThis` * Update index.d.ts Added namespace * Update index.d.ts
12 lines
407 B
TypeScript
12 lines
407 B
TypeScript
tinymce.init(
|
|
{
|
|
selector: '.tinymce-editable',
|
|
height: 145,
|
|
plugins: [
|
|
'autolink table contextmenu paste code link textcolor colorpicker image imagetools'
|
|
],
|
|
menubar: 'edit insert table tools',
|
|
toolbar: 'undo redo | styleselect bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist | link image',
|
|
content_css: 'page.css'
|
|
}
|
|
); |