import { createBeanDecorator } from 'zova'; import type { IDecoratorBehaviorOptions } from '../types/behavior.js'; export function Behavior(options?: T): ClassDecorator { return createBeanDecorator('behavior', 'new', true, options); }