{"version":3,"sources":["src/typings/chrome/Runtime/ConsoleAPICalled.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,YAAY,MAAM,gBAAgB,CAAC;AAC1C,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC;;;;;GAKG;AACH,MAAM,CAAC,OAAO,WAAW,gBAAgB;IAEvC;;;;;OAKG;IACH,IAAI,EAAE,KAAK,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,YAAY,GAAG,qBAAqB,GAAG,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,YAAY,GAAG,OAAO,GAAG,SAAS,CAAC;IAEtN;;;;;OAKG;IACH,IAAI,EAAE,YAAY,EAAE,CAAC;IAErB;;;;;OAKG;IACH,kBAAkB,EAAE,kBAAkB,CAAC;IAEvC;;;;;OAKG;IACH,SAAS,EAAE,SAAS,CAAC;IAErB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB","file":"ConsoleAPICalled.d.ts","sourcesContent":["'use strict';\n\nimport { ExecutionContextId } from './ExecutionContextId';\nimport RemoteObject from './RemoteObject';\nimport StackTrace from './StackTrace';\nimport { Timestamp } from './Timestamp';\n\n/**\n * Issued when console API was called.\n *\n * @export\n * @interface ConsoleAPICalled\n */\nexport default interface ConsoleAPICalled {\n\n  /**\n   * Type of the call.\n   *\n   * @type {('log' | 'debug' | 'info' | 'error' | 'warning' | 'dir' | 'dirxml' | 'table' | 'trace' | 'clear' | 'startGroup' | 'startGroupCollapsed' | 'endGroup' | 'assert' | 'profile' | 'profileEnd' | 'count' | 'timeEnd')}\n   * @memberof ConsoleAPICalled\n   */\n  type: 'log' | 'debug' | 'info' | 'error' | 'warning' | 'dir' | 'dirxml' | 'table' | 'trace' | 'clear' | 'startGroup' | 'startGroupCollapsed' | 'endGroup' | 'assert' | 'profile' | 'profileEnd' | 'count' | 'timeEnd';\n\n  /**\n   * Call arguments.\n   *\n   * @type {RemoteObject[]}\n   * @memberof ConsoleAPICalled\n   */\n  args: RemoteObject[];\n\n  /**\n   * Identifier of the context where the call was made.\n   *\n   * @type {ExecutionContextId}\n   * @memberof ConsoleAPICalled\n   */\n  executionContextId: ExecutionContextId;\n\n  /**\n   * Call timestamp.\n   *\n   * @type {Timestamp}\n   * @memberof ConsoleAPICalled\n   */\n  timestamp: Timestamp;\n\n  /**\n   * Stack trace captured when the call was made.\n   *\n   * @type {StackTrace}\n   * @memberof ConsoleAPICalled\n   */\n  stackTrace?: StackTrace;\n\n  /**\n   * Console context descriptor for calls on non-default console context (not console.*):\n   * 'anonymous#unique-logger-id' for call on unnamed context,\n   * 'name#unique-logger-id' for call on named context.\n   *\n   * @type {string}\n   * @memberof ConsoleAPICalled\n   */\n  context?: string;\n}\n"],"sourceRoot":"../../../../.."}