import { type App } from 'vue'; import type { VueHookName } from './vue-utils'; export interface LifecycleLogOptions { /** @default /^[A-Z]/ 匹配大写字母开头的组件名 */ nameRegex?: RegExp; /** @default true 开启log */ enable?: boolean; /** @default 除 updated, beforeUpdate 外的所有hook */ hookNames?: VueHookName[]; } declare const LifecycleLogPlugin: { install(app: App, options?: LifecycleLogOptions): void; }; export default LifecycleLogPlugin;