core/src/plugin/decorators/auto.ts

12 lines
227 B
TypeScript

export function Auto(): (...args: any[]) => void {
return (
target: any,
propertyKey: string,
descriptor: PropertyDescriptor,
) => {
descriptor.value.prototype.__autoexec = 1;
return descriptor;
};
}