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 (10 loc) 245 B
import { Injectable } from '@nestjs/common'; import { Foo } from '../foo'; @Injectable() export class DuplicateService { constructor(private readonly value: number) {} @Foo({ options: 'value' }) getValue() { return this.value; } }