UNPKG

637 BTypeScriptView Raw
1declare module '@ember/debug/lib/inspect' {
2 /**
3 @module @ember/debug
4 */
5 /**
6 Convenience method to inspect an object. This method will attempt to
7 convert the object into a useful string description.
8
9 It is a pretty simple implementation. If you want something more robust,
10 use something like JSDump: https://github.com/NV/jsDump
11
12 @method inspect
13 @static
14 @param {Object} obj The object you want to inspect.
15 @return {String} A description of the object
16 @since 1.4.0
17 @private
18 */
19 export default function inspect(this: any, obj: any | null | undefined): string;
20}