feat: add declaration files

This commit is contained in:
Shinwoo PARK 2023-11-17 17:14:38 +09:00
parent f437cf5886
commit 76105563e2
10 changed files with 48 additions and 0 deletions

7
dist/functions.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
export declare const notIncludedSymbol: unique symbol;
export declare function includeOrExcludeObject(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
export default function objectContainedLogged(ocv: any, options?: {
include?: string[];
exclude: string[];
}): Promise<string>;
//# sourceMappingURL=functions.d.ts.map

1
dist/functions.d.ts.map vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"functions.d.ts","sourceRoot":"","sources":["../src/functions.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,eAAwB,CAAA;AAEtD,wBAAsB,sBAAsB,CACxC,GAAG,EAAE,GAAG,EACR,KAAK,EAAE,MAAM,EAAE,EACf,WAAW,EAAE,MAAM,EAAO,EAC1B,OAAO,EAAE,OAAO,OA6CnB;AAED,wBAA8B,qBAAqB,CAC/C,GAAG,EAAE,GAAG,EACR,OAAO,CAAC,EAAE;IAAC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,EAAE,MAAM,EAAE,CAAA;CAAC,GAClD,OAAO,CAAC,MAAM,CAAC,CAmBjB"}

4
dist/index.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
export * from './logged';
export * from './logger';
export * from './reflected';
//# sourceMappingURL=index.d.ts.map

1
dist/index.d.ts.map vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC"}

3
dist/logged.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
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>>) => void;
//# sourceMappingURL=logged.d.ts.map

1
dist/logged.d.ts.map vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"logged.d.ts","sourceRoot":"","sources":["../src/logged.ts"],"names":[],"mappings":"AAmBA,wBAAgB,cAAc,CAAC,CAAC,SAAS,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAClD,OAAO,EAAE,GAAG,EACZ,GAAG,EAAE,MAAM,EACX,UAAU,EAAE,uBAAuB,CAAC,CAAC,GAAG,IAAI,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,QAqElE;AAED,wBAAgB,WAAW,CAAC,CAAC,SAAS,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,aAEjD,GAAG,OACP,MAAM,gDACmC,CAAC,KAAK,QAAQ,CAAC,CAAC,WAkErE"}

15
dist/logger.d.ts vendored Normal file
View File

@ -0,0 +1,15 @@
import { Logger } from "@nestjs/common";
export default class ScopedLogger extends Logger {
private logger;
private scope;
private scopeId?;
constructor(logger: Logger, scope: string, scopeId?: string);
private scopedLog;
debug: (message: string) => void;
log: (message: string) => void;
warn: (message: string) => void;
verbose: (message: string) => void;
error: (message: string) => void;
fatal: (message: string) => void;
}
//# sourceMappingURL=logger.d.ts.map

1
dist/logger.d.ts.map vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"logger.d.ts","sourceRoot":"","sources":["../src/logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,gBAAgB,CAAC;AAItC,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,MAAM;IAExC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,OAAO,CAAC;gBAFR,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,OAAO,CAAC,EAAE,MAAM;IAK5B,OAAO,CAAC,SAAS;IAUjB,KAAK,YATgB,MAAM,UASK;IAChC,GAAG,YAVkB,MAAM,UAUC;IAC5B,IAAI,YAXiB,MAAM,UAWG;IAC9B,OAAO,YAZc,MAAM,UAYS;IACpC,KAAK,YAbgB,MAAM,UAaK;IAChC,KAAK,YAdgB,MAAM,UAcK;CACnC"}

14
dist/reflected.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
export interface LoggedParamReflectData {
name: string;
index: number;
include?: string[];
exclude?: string[];
}
export declare const scopedLogger: unique symbol;
export declare const loggedParam: unique symbol;
export declare function InjectLogger(target: any, propertyKey: string | symbol, parameterIndex: number): void;
export declare function LoggedParam(name: string, options?: {
includePath?: (string | string[])[];
excludePath?: (string | string[])[];
}): (target: any, propertyKey: string | symbol, parameterIndex: number) => void;
//# sourceMappingURL=reflected.d.ts.map

1
dist/reflected.d.ts.map vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"file":"reflected.d.ts","sourceRoot":"","sources":["../src/reflected.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACtB;AAED,eAAO,MAAM,YAAY,eAAyB,CAAC;AACnD,eAAO,MAAM,WAAW,eAAwB,CAAC;AAGjD,wBAAgB,YAAY,CACxB,MAAM,EAAE,GAAG,EACX,WAAW,EAAE,MAAM,GAAG,MAAM,EAC5B,cAAc,EAAE,MAAM,QAGzB;AAED,wBAAgB,WAAW,CACvB,IAAI,EAAE,MAAM,EACZ,OAAO,CAAC,EAAE;IACN,WAAW,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,CAAC;IACpC,WAAW,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,EAAE,CAAC,EAAE,CAAC;CACvC,YAGW,GAAG,eACE,MAAM,GAAG,MAAM,kBACZ,MAAM,UAyB7B"}