UNPKG

nestjs-aop

Version:

<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/toss/nestjs-aop"> <img src="https://toss.tech/wp-content/uploads/2022/11/tech-article-nest-js-02.png" alt="Logo" height="200"> </a>

13 lines (11 loc) 291 B
import { Injectable } from '@nestjs/common'; import { Bar } from './bar.decorator'; @Injectable() export class BarService { @Bar({ options: '1' }) thisTest() { // eslint-disable-next-line @typescript-eslint/no-this-alias barThisValue = this; } } export let barThisValue: any;