我正在为现有的 JS 库(CKEditor)编写一些定义。是否可以比 更具体toolbar: any
?
文档:
工具栏:数组/字符串
工具箱(别名工具栏)定义。它是一个工具栏名称或一组工具栏(条),每个工具栏也是一个数组,包含一个 UI 项列表。
库代码:
var toolbar = editor.config.toolbar;
// If it is a string, return the relative "toolbar_name" config.
if ( typeof toolbar == 'string' )
toolbar = editor.config[ 'toolbar_' + toolbar ];
return ( editor.toolbar = toolbar ? populateToolbarConfig( toolbar ) : buildToolbarConfig() );