StaticMethodDecorator
@tsed/core
Usage
typescript
import { StaticMethodDecorator } from "@tsed/core/src/types/interfaces/DecoratorParameters";
See /packages/core/src/types/interfaces/DecoratorParameters.ts.
Overview
ts
type StaticMethodDecorator = <TFunction extends Function, T>(target: TFunction, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;