Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/class/decorators.ts>MethodDecorator

A JavaScript extension package for building strong and modern applications.
Latest
type alias MethodDecorator
import { type MethodDecorator } from "https://deno.land/x/ayonli_jsext@v0.9.72/class/decorators.ts";
definition: { <T>(
target: any,
prop: string,
desc: TypedPropertyDescriptor<T>,
): void | TypedPropertyDescriptor<T>; <F extends (...args: any[]) => any>(target: F, context: DecoratorContext): void | F; }