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;