/** * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ /** * Customize object inspection using a Node.js-style inspector function. */ export declare function NodeJsStyleInspectable(target: T, inspector: NodeJsStyleInspectable.Inspector): void; export declare namespace NodeJsStyleInspectable { interface Inspector { (this: T, depth: number, options: Options, inspect: (value: unknown, options?: Options) => string): unknown; } interface Options extends Record { color?: boolean; } } //# sourceMappingURL=NodeJsStyleInspectable.d.ts.map