From cb6ae2fe54674f7c7ee8f9f709c6e637ef6fd3c1 Mon Sep 17 00:00:00 2001 From: Gleb Bashkatov Date: Thu, 29 Aug 2024 17:34:26 +0000 Subject: [PATCH] fix: remove direct dependency on rxjs --- src/decorators/is-nested.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/decorators/is-nested.ts b/src/decorators/is-nested.ts index 1010239..34edc85 100644 --- a/src/decorators/is-nested.ts +++ b/src/decorators/is-nested.ts @@ -1,8 +1,7 @@ import { ClassConstructor, Type } from 'class-transformer'; import { IsObject, ValidateNested, ValidationArguments } from 'class-validator'; -import { noop } from 'rxjs'; -import { compose, PropertyOptions } from '../core'; +import { compose, noop, PropertyOptions } from '../core'; export const IsNested = ({ type,