@redhare/lowcode-types
Version:
Types for Ali lowCode engine
13 lines (12 loc) • 440 B
TypeScript
export interface IPublicTypePluginRegisterOptions {
/**
* Will enable plugin registered with auto-initialization immediately
* other than plugin-manager init all plugins at certain time.
* It is helpful when plugin register is later than plugin-manager initialization.
*/
autoInit?: boolean;
/**
* allow overriding existing plugin with same name when override === true
*/
override?: boolean;
}