nestlogged/dist/lib/functions.d.ts
2024-01-14 14:25:12 +09:00

8 lines
397 B
TypeScript

export declare const notIncludedSymbol: unique symbol;
export declare function includeOrExcludeObjectSync(ocv: any, paths: string[], currentPath: string[], include: boolean): any;
export declare function objectContainedLoggedSync(ocv: any, options?: {
include?: string[];
exclude: string[];
}): string;
export declare function getItemByPathSync(obj: object, path: string | string[]): any;