(exports: unknown)
| 41 | |
| 42 | /** check the lifecycle method of plugin */ |
| 43 | export function validateExportLifecycle(exports: unknown) { |
| 44 | const { bootstrap, mount, unmount } = exports ?? {} |
| 45 | return isFunction(bootstrap) && isFunction(mount) && isFunction(unmount) |
| 46 | } |
| 47 | |
| 48 | export const DEFAULT_LOCAL_PLUGIN_PATH = '/plugin-frontend/' |
| 49 |