Skip to content

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;

Released under the MIT License.