{"version":3,"sources":["src/typings/chrome/Runtime/ObjectPreview.ts"],"names":[],"mappings":"AAEA,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAEhD;;;;;GAKG;AACH,MAAM,CAAC,OAAO,WAAW,aAAa;IACpC;;;;;OAKG;IACH,IAAI,EAAE,QAAQ,GAAG,UAAU,GAAG,WAAW,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAC;IAEvF;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,GAAE,MAAM,GAAG,KAAK,GAAG,KAAK,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,WAAW,GAAG,OAAO,CAAC;IAEpI;;;;;OAKG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;;;OAKG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;;;;OAKG;IACH,UAAU,EAAE,eAAe,EAAE,CAAC;IAE9B;;;;;OAKG;IACH,OAAO,CAAC,EAAE,YAAY,EAAE,CAAC;CAC1B","file":"ObjectPreview.d.ts","sourcesContent":["'use strict';\n\nimport EntryPreview from './EntryPreview';\nimport PropertyPreview from './PropertyPreview';\n\n/**\n * Object containing abbreviated remote object value.\n *\n * @export\n * @interface ObjectPreview\n */\nexport default interface ObjectPreview {\n  /**\n   * Object type.\n   *\n   * @type {('object' | 'function' | 'undefined' | 'string' | 'number' | 'boolean' | 'symbol')}\n   * @memberof ObjectPreview\n   */\n  type: 'object' | 'function' | 'undefined' | 'string' | 'number' | 'boolean' | 'symbol';\n\n  /**\n   * Object subtype hint. Specified for object type values only.\n   *\n   * @type {('array' | 'null' | 'node' | 'regexp' |'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error')}\n   * @memberof ObjectPreview\n   */\n  subtype?: 'array' | 'null' | 'node' | 'regexp' |'date' | 'map' | 'set' | 'weakmap' | 'weakset' | 'iterator' | 'generator' | 'error';\n\n  /**\n   * String representation of the object.\n   *\n   * @type {string}\n   * @memberof ObjectPreview\n   */\n  description?: string;\n\n  /**\n   * True iff some of the properties or entries of the original object did not fit.\n   *\n   * @type {boolean}\n   * @memberof ObjectPreview\n   */\n  overflow: boolean;\n\n  /**\n   * List of the properties.\n   *\n   * @type {PropertyPreview[]}\n   * @memberof ObjectPreview\n   */\n  properties: PropertyPreview[];\n\n  /**\n   * List of the entries. Specified for map and set subtype values only.\n   *\n   * @type {EntryPreview[]}\n   * @memberof ObjectPreview\n   */\n  entries?: EntryPreview[];\n}\n"],"sourceRoot":"../../../../.."}