Type Alias ClassMethodDecorator

ClassMethodDecorator: <T>(
    target: Record<string, any>,
    propertyKey?: string,
    descriptor?: TypedPropertyDescriptor<T>,
) => void

Type declaration

    • <T>(
          target: Record<string, any>,
          propertyKey?: string,
          descriptor?: TypedPropertyDescriptor<T>,
      ): void
    • Type Parameters

      • T

      Parameters

      • target: Record<string, any>
      • OptionalpropertyKey: string
      • Optionaldescriptor: TypedPropertyDescriptor<T>

      Returns void