From d46c49fa352a6fcc7a737fa9699100b0e9945862 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Sun, 10 Dec 2023 17:54:38 +0900 Subject: [PATCH] feat: build latest --- dist/lib/logged.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dist/lib/logged.d.ts b/dist/lib/logged.d.ts index bc80d3c..4ac125b 100644 --- a/dist/lib/logged.d.ts +++ b/dist/lib/logged.d.ts @@ -1,5 +1,4 @@ import { ControllerOptions, ScopeOptions } from "@nestjs/common"; -import { RequestMethod } from "@nestjs/common"; export declare function LoggedInjectable(options?: ScopeOptions & { verbose?: boolean; }): (target: any) => void; @@ -9,4 +8,4 @@ export declare function LoggedController(options: ControllerOptions & { verbose?: boolean; }): (target: any) => void; export declare function LoggedFunction, R>(_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise>): void; -export declare function LoggedRoute, R>(route?: string): (_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise>) => [string, RequestMethod]; +export declare function LoggedRoute, R>(route?: string): (_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise>) => void;