feat: build latest

This commit is contained in:
Shinwoo PARK 2023-12-10 17:54:38 +09:00
parent 9c61200817
commit d46c49fa35

View File

@ -1,5 +1,4 @@
import { ControllerOptions, ScopeOptions } from "@nestjs/common"; import { ControllerOptions, ScopeOptions } from "@nestjs/common";
import { RequestMethod } from "@nestjs/common";
export declare function LoggedInjectable(options?: ScopeOptions & { export declare function LoggedInjectable(options?: ScopeOptions & {
verbose?: boolean; verbose?: boolean;
}): (target: any) => void; }): (target: any) => void;
@ -9,4 +8,4 @@ export declare function LoggedController(options: ControllerOptions & {
verbose?: boolean; verbose?: boolean;
}): (target: any) => void; }): (target: any) => void;
export declare function LoggedFunction<F extends Array<any>, R>(_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>): void; export declare function LoggedFunction<F extends Array<any>, R>(_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>): void;
export declare function LoggedRoute<F extends Array<any>, R>(route?: string): (_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>) => [string, RequestMethod]; export declare function LoggedRoute<F extends Array<any>, R>(route?: string): (_target: any, key: string, descriptor: TypedPropertyDescriptor<(...args: F) => Promise<R>>) => void;