56152c4738a59b3a90dd887f2257a6e1a02ce8ee215188a10c4b33cc83c28489b849da9d1a35f37b74af8b90563c3f8e6cbebcf5f22cec060dd17160bed933 481 B

12345678
  1. import GlobalModel from './Global.js';
  2. import { ComponentOption, ComponentMainType } from '../util/types.js';
  3. interface InternalOptionCreator {
  4. (ecModel: GlobalModel): ComponentOption[];
  5. }
  6. export declare function registerInternalOptionCreator(mainType: ComponentMainType, creator: InternalOptionCreator): void;
  7. export declare function concatInternalOptions(ecModel: GlobalModel, mainType: ComponentMainType, newCmptOptionList: ComponentOption[]): ComponentOption[];
  8. export {};