Skip to content

useMethodDecorators

@tsed/core

Usage

typescript
import { useMethodDecorators } from "@tsed/core";

See /packages/core/src/utils/useMethodDecorators.ts.

Overview

ts
function useMethodDecorators(...decorators: AnyDecorator[]): (target: any, propertyKey: string | symbol) => void;

Description

Combines multiple method decorators into a single decorator with proper descriptor handling.

Released under the MIT License.