This commit is contained in:
2024-11-28 23:08:17 +01:00
parent 8895fde030
commit 0dda8e760c
16116 changed files with 2866428 additions and 71 deletions

7
node_modules/loupe/lib/helpers.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import type { Inspect, Options } from './types.js';
export declare const truncator = "\u2026";
export declare function normaliseOptions({ showHidden, depth, colors, customInspect, showProxy, maxArrayLength, breakLength, seen, truncate, stylize, }: Partial<Options> | undefined, inspect: Inspect): Options;
export declare function truncate(string: string | number, length: number, tail?: typeof truncator): string;
export declare function inspectList(list: ArrayLike<unknown>, options: Options, inspectItem?: Inspect, separator?: string): string;
export declare function inspectProperty([key, value]: [unknown, unknown], options: Options): string;
//# sourceMappingURL=helpers.d.ts.map