Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
Services.scriptloader.loadSubScript(
this
);
// LocalizationHelper comes from shared-head.js.
const COMPONENTS_L10N = new LocalizationHelper(
"devtools/client/locales/components.properties"
);
const TEST_URI = "data:text/html;charset=utf-8,Test page";
// Keep in sync with KEYBOARD_RESIZE_STEP in SplitBox.js.
const STEP = 5;
const INITIAL_PANEL_SIZE = 300;
/**
* The debugger mounts two split boxes one inside the other: the outer one
* controls its end panel, the inner one its start panel, so a single toolbox
* covers both directions the splitter can be dragged in.
*
* @param {Document} doc
* The debugger panel's document.
* @return {object}
* An object with a `start` and an `end` property, one per split box,
* each holding the split box element, its splitter, the panel that
* splitter sizes, the `minSize` prop the consumer passes in pixels and
* its `maxSize` prop as a ratio of the split box's width.
*/
function getSplitBoxes(doc) {
const endBox = doc.querySelector(".debugger > .split-box");
const startBox = endBox.querySelector(":scope > .uncontrolled > .split-box");
return {
end: {
name: "secondary panes",
box: endBox,
splitter: endBox.querySelector(":scope > .splitter"),
panel: endBox.querySelector(":scope > .controlled"),
minSize: 30,
maxRatio: 0.7,
},
start: {
name: "sources",
box: startBox,
splitter: startBox.querySelector(":scope > .splitter"),
panel: startBox.querySelector(":scope > .controlled"),
minSize: 30,
maxRatio: 0.85,
},
};
}
function checkSemantics({ name, splitter }) {
is(
splitter.getAttribute("role"),
"separator",
`The ${name} splitter has the separator role`
);
is(
splitter.getAttribute("aria-orientation"),
"horizontal",
`The ${name} splitter separates horizontally laid out panels`
);
is(
splitter.getAttribute("tabindex"),
"0",
`The ${name} splitter is in the tab order`
);
is(
splitter.getAttribute("aria-label"),
COMPONENTS_L10N.getStr("splitter.label"),
`The ${name} splitter has an accessible name`
);
}
async function checkAriaValues({
name,
box,
splitter,
panel,
minSize,
maxRatio,
}) {
// The values are set from a ResizeObserver, so they may not be there yet.
await waitFor(
() => splitter.hasAttribute("aria-valuenow"),
`The ${name} splitter reports a position`
);
is(
splitter.getAttribute("aria-valuenow"),
String(Math.round(panel.getBoundingClientRect().width)),
`The ${name} splitter's aria-valuenow is the width of the panel it sizes`
);
is(
splitter.getAttribute("aria-valuemin"),
String(minSize),
`The ${name} splitter's aria-valuemin is its minSize prop`
);
is(
splitter.getAttribute("aria-valuemax"),
String(Math.round(maxRatio * box.getBoundingClientRect().width)),
`The ${name} splitter's aria-valuemax resolves its percentage maxSize prop`
);
Assert.deepEqual(
splitter.ariaControlsElements,
[panel],
`The ${name} splitter controls the panel it sizes`
);
}
async function waitForReportedRange({ name, box, splitter, maxRatio }) {
await waitFor(
() =>
splitter.getAttribute("aria-valuemax") ==
String(Math.round(maxRatio * box.getBoundingClientRect().width)),
`The ${name} splitter's reported range caught up with the split box`
);
}
/**
* Press an arrow key on a focused splitter and check that the panel it sizes
* and the reported position move together.
*
* @param {string} key
* An EventUtils key name, e.g. "KEY_ArrowLeft".
* @param {object} splitBox
* One of the objects `getSplitBoxes` returns.
* @return {number}
* How many pixels the panel's width changed by.
*/
async function pressArrow(key, { name, splitter, panel }) {
const before = panel.getBoundingClientRect().width;
const valueNowBefore = splitter.getAttribute("aria-valuenow");
EventUtils.synthesizeKey(key, {}, splitter.ownerGlobal);
await waitFor(
() => splitter.getAttribute("aria-valuenow") != valueNowBefore,
`The ${name} splitter moved on ${key}`
);
const after = panel.getBoundingClientRect().width;
is(
splitter.getAttribute("aria-valuenow"),
String(Math.round(after)),
`The ${name} splitter's aria-valuenow follows the panel it sizes`
);
return after - before;
}
add_task(async function testKeyboardResize() {
await pushPref("devtools.debugger.start-panel-size", INITIAL_PANEL_SIZE);
await pushPref("devtools.debugger.end-panel-size", INITIAL_PANEL_SIZE);
await pushPref("devtools.debugger.start-panel-collapsed", false);
await pushPref("devtools.debugger.end-panel-collapsed", false);
const toolbox = await openNewTabAndToolbox(TEST_URI, "jsdebugger");
const doc = toolbox.getPanel("jsdebugger").panelWin.document;
const { start, end } = getSplitBoxes(doc);
for (const splitBox of [start, end]) {
checkSemantics(splitBox);
await checkAriaValues(splitBox);
is(
Math.round(splitBox.panel.getBoundingClientRect().width),
INITIAL_PANEL_SIZE,
`The ${splitBox.name} panel starts at the size its preference holds`
);
splitBox.splitter.focus();
is(
doc.activeElement,
splitBox.splitter,
`The ${splitBox.name} splitter can take focus`
);
}
info("Move the splitter which sizes the panel on its start side");
start.splitter.focus();
is(
Math.round(await pressArrow("KEY_ArrowRight", start)),
STEP,
"ArrowRight grew the sources pane, which is on the splitter's start side"
);
is(
Math.round(await pressArrow("KEY_ArrowLeft", start)),
-STEP,
"ArrowLeft shrank the sources pane again"
);
info("Move the splitter which sizes the panel on its end side");
end.splitter.focus();
is(
Math.round(await pressArrow("KEY_ArrowLeft", end)),
STEP,
"ArrowLeft grew the secondary panes, which are on the splitter's end side"
);
is(
Math.round(await pressArrow("KEY_ArrowRight", end)),
-STEP,
"ArrowRight shrank the secondary panes again"
);
info("The arrows across a vertical splitter do not move it");
for (const key of ["KEY_ArrowUp", "KEY_ArrowDown"]) {
const width = end.panel.getBoundingClientRect().width;
const valueNow = end.splitter.getAttribute("aria-valuenow");
EventUtils.synthesizeKey(key, {}, end.splitter.ownerGlobal);
await waitForTick();
is(
end.panel.getBoundingClientRect().width,
width,
`${key} left the secondary panes' width alone`
);
is(
end.splitter.getAttribute("aria-valuenow"),
valueNow,
`${key} left the reported position alone`
);
}
info("The size a keyboard resize settles on is persisted on key up");
start.splitter.focus();
await pressArrow("KEY_ArrowLeft", start);
is(
Services.prefs.getIntPref("devtools.debugger.start-panel-size"),
Math.round(start.panel.getBoundingClientRect().width),
"The sources pane's new width was written to its preference"
);
await closeTabAndToolbox();
});
add_task(async function testWindowResizeUpdatesAriaValues() {
const toolbox = await openNewTabAndToolbox(TEST_URI, "jsdebugger");
const doc = toolbox.getPanel("jsdebugger").panelWin.document;
// Narrowing the window puts the debugger in its vertical layout, which turns
// the outer split box's splitter horizontal: that splitter's range is then a
// share of the split box's height. The sources splitter stays vertical
// whatever the debugger's layout, so it is the one checked here.
const { start } = getSplitBoxes(doc);
const originalWidth = window.outerWidth;
const originalHeight = window.outerHeight;
registerCleanupFunction(() => window.resizeTo(originalWidth, originalHeight));
await checkAriaValues(start);
const valueMaxBefore = Number(start.splitter.getAttribute("aria-valuemax"));
info("Narrow the window");
const widthBefore = start.box.getBoundingClientRect().width;
window.resizeTo(Math.round(originalWidth / 2), originalHeight);
await waitFor(
() => start.box.getBoundingClientRect().width != widthBefore,
"The window resize reached the split box"
);
await waitForReportedRange(start);
await checkAriaValues(start);
Assert.less(
Number(start.splitter.getAttribute("aria-valuemax")),
valueMaxBefore,
"The sources splitter reports a smaller range in a narrower window"
);
await closeTabAndToolbox();
});
add_task(async function testSplitterWhichResizesNothing() {
await pushPref("devtools.debugger.start-panel-collapsed", true);
const toolbox = await openNewTabAndToolbox(TEST_URI, "jsdebugger");
const doc = toolbox.getPanel("jsdebugger").panelWin.document;
const { start } = getSplitBoxes(doc);
const { splitter } = start;
is(
splitter.getAttribute("role"),
"separator",
"A splitter with a collapsed panel beside it is still a separator"
);
is(
splitter.getAttribute("aria-orientation"),
"horizontal",
"A splitter with a collapsed panel beside it still reports its orientation"
);
ok(
!splitter.hasAttribute("tabindex"),
"A splitter which resizes nothing takes no tab stop"
);
ok(
!splitter.hasAttribute("aria-label"),
"A splitter which resizes nothing is not named as a resizing control"
);
for (const name of ["aria-valuenow", "aria-valuemin", "aria-valuemax"]) {
ok(
!splitter.hasAttribute(name),
`A splitter which resizes nothing has no ${name}`
);
}
ok(
!splitter.ariaControlsElements,
"A splitter which resizes nothing controls nothing"
);
await closeTabAndToolbox();
});
\"","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/resource/tests/browser_resources_target_switching.js#8"}},"S_js_typescript_devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"\"data:text/html;charset=utf-8,\"","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js#11"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js#8"}},"S_js_typescript_devtools/shared/flags.js/exports.name.":{"sym":"S_js_typescript_devtools/shared/flags.js/exports.name.","pretty":"exports::name","meta":{"structured":1,"pretty":"exports::name","sym":"S_js_typescript_devtools/shared/flags.js/exports.name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/flags.js#44"}},"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js/ok().":{"sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js/ok().","pretty":"ok","meta":{"structured":1,"pretty":"ok","sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js/ok().","js_sym":"#ok","type_pretty":"void","kind":"method","subsystem":"DevTools/Memory","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js#36"}},"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js/ok().":{"sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js/ok().","pretty":"ok","meta":{"structured":1,"pretty":"ok","sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js/ok().","js_sym":"#ok","type_pretty":"void","kind":"method","subsystem":"DevTools/Memory","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js#34"}},"S_js_typescript_devtools/shared/jsbeautify/src/beautify-css.js/exports.name.":{"sym":"S_js_typescript_devtools/shared/jsbeautify/src/beautify-css.js/exports.name.","pretty":"exports::name","meta":{"structured":1,"pretty":"exports::name","sym":"S_js_typescript_devtools/shared/jsbeautify/src/beautify-css.js/exports.name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/jsbeautify/src/beautify-css.js#107"}},"S_js_typescript_devtools/shared/jsbeautify/src/beautify-html.js/exports.name.":{"sym":"S_js_typescript_devtools/shared/jsbeautify/src/beautify-html.js/exports.name.","pretty":"exports::name","meta":{"structured":1,"pretty":"exports::name","sym":"S_js_typescript_devtools/shared/jsbeautify/src/beautify-html.js/exports.name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/jsbeautify/src/beautify-html.js#117"}},"S_js_typescript_devtools/shared/jsbeautify/src/beautify-js.js/exports.name.":{"sym":"S_js_typescript_devtools/shared/jsbeautify/src/beautify-js.js/exports.name.","pretty":"exports::name","meta":{"structured":1,"pretty":"exports::name","sym":"S_js_typescript_devtools/shared/jsbeautify/src/beautify-js.js/exports.name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/jsbeautify/src/beautify-js.js#130"}},"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#":{"sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#","pretty":"LocalizationHelper","meta":{"structured":1,"pretty":"LocalizationHelper","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#","js_sym":"#LocalizationHelper","type_pretty":"class LocalizationHelper","kind":"class","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[{"pretty":"LocalizationHelper::","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#().","props":[],"args":[]},{"pretty":"LocalizationHelper::getStr","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#getStr().","props":[],"args":[]},{"pretty":"LocalizationHelper::getFormatStr","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#getFormatStr().","props":[],"args":[]},{"pretty":"LocalizationHelper::getFormatStrWithNumbers","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#getFormatStrWithNumbers().","props":[],"args":[]},{"pretty":"LocalizationHelper::numberWithDecimals","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#numberWithDecimals().","props":[],"args":[]}],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/l10n.js#83"}},"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#getStr().":{"sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#getStr().","pretty":"LocalizationHelper::getStr","meta":{"structured":1,"pretty":"LocalizationHelper::getStr","sym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#getStr().","js_sym":"#getStr","type_pretty":"any","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/l10n.js/LocalizationHelper#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/l10n.js#101"}},"S_js_typescript_devtools/shared/l10n.js/exports.LocalizationHelper#":{"sym":"S_js_typescript_devtools/shared/l10n.js/exports.LocalizationHelper#","pretty":"exports::LocalizationHelper","meta":{"structured":1,"pretty":"exports::LocalizationHelper","sym":"S_js_typescript_devtools/shared/l10n.js/exports.LocalizationHelper#","js_sym":"#LocalizationHelper","type_pretty":"class LocalizationHelper","kind":"class","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/l10n.js#276"}},"S_js_typescript_devtools/shared/loader/builtin-modules.js/defineLazyGetter().(object)name.":{"sym":"S_js_typescript_devtools/shared/loader/builtin-modules.js/defineLazyGetter().(object)name.","pretty":"object::name","meta":{"structured":1,"pretty":"object::name","sym":"S_js_typescript_devtools/shared/loader/builtin-modules.js/defineLazyGetter().(object)name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_devtools/shared/test-helpers/test-line-tracer.js/exports.start.":{"sym":"S_js_typescript_devtools/shared/test-helpers/test-line-tracer.js/exports.start.","pretty":"exports::start","meta":{"structured":1,"pretty":"exports::start","sym":"S_js_typescript_devtools/shared/test-helpers/test-line-tracer.js/exports.start.","js_sym":"#start","type_pretty":"any) => void","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/test-helpers/test-line-tracer.js#146"}},"S_js_typescript_devtools/shared/test-helpers/test-stepper.js/exports.start.":{"sym":"S_js_typescript_devtools/shared/test-helpers/test-stepper.js/exports.start.","pretty":"exports::start","meta":{"structured":1,"pretty":"exports::start","sym":"S_js_typescript_devtools/shared/test-helpers/test-stepper.js/exports.start.","js_sym":"#start","type_pretty":"any) => void","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/test-helpers/test-stepper.js#46"}},"S_js_typescript_devtools/shared/tests/xpcshell/test_executeSoon.js/waitForTick().":{"sym":"S_js_typescript_devtools/shared/tests/xpcshell/test_executeSoon.js/waitForTick().","pretty":"waitForTick","meta":{"structured":1,"pretty":"waitForTick","sym":"S_js_typescript_devtools/shared/tests/xpcshell/test_executeSoon.js/waitForTick().","js_sym":"#waitForTick","type_pretty":"Promise","kind":"method","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/tests/xpcshell/test_executeSoon.js#31"}},"S_js_typescript_devtools/shared/webconsole/l10n.js/l10n.getStr().":{"sym":"S_js_typescript_devtools/shared/webconsole/l10n.js/l10n.getStr().","pretty":"l10n::getStr","meta":{"structured":1,"pretty":"l10n::getStr","sym":"S_js_typescript_devtools/shared/webconsole/l10n.js/l10n.getStr().","js_sym":"#getStr","type_pretty":"any","kind":"method","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/webconsole/l10n.js#59"}},"S_js_typescript_editor.js/Editor#focus().":{"sym":"S_js_typescript_editor.js/Editor#focus().","pretty":"Editor::focus","meta":{"structured":1,"pretty":"Editor::focus","sym":"S_js_typescript_editor.js/Editor#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"DevTools/Source Editor","parentsym":"S_js_typescript_editor.js/Editor#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/client/shared/sourceeditor/editor.js#4432"}},"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsIMacFinderProgress#end().":{"sym":"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsIMacFinderProgress#end().","pretty":"nsIMacFinderProgress::end","meta":{"structured":1,"pretty":"nsIMacFinderProgress::end","sym":"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsIMacFinderProgress#end().","js_sym":"#end","type_pretty":"(method) end() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsIMacFinderProgress#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIMacFinderProgress_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.darwin.d.ts#120"}},"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsITouchBarHelper#document.":{"sym":"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsITouchBarHelper#document.","pretty":"nsITouchBarHelper::document","meta":{"structured":1,"pretty":"nsITouchBarHelper::document","sym":"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsITouchBarHelper#document.","js_sym":"#document","type_pretty":"Document","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.darwin.d.ts/global/nsITouchBarHelper#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsITouchBarHelper_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.darwin.d.ts#213"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ARIAMixin#ariaControlsElements.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ARIAMixin#ariaControlsElements.","pretty":"ARIAMixin::ariaControlsElements","meta":{"structured":1,"pretty":"ARIAMixin::ariaControlsElements","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ARIAMixin#ariaControlsElements.","js_sym":"#ariaControlsElements","type_pretty":"Element[] | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ARIAMixin#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ARIAMixin_ariaControlsElements"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7869"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#is().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#is().","pretty":"AccessibleNode::is","meta":{"structured":1,"pretty":"AccessibleNode::is","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#is().","js_sym":"#is","type_pretty":"string[]) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AccessibleNode_is"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8142"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Addon#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Addon#name.","pretty":"Addon::name","meta":{"structured":1,"pretty":"Addon::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Addon#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Addon#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Addon_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8165"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Attr#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Attr#name.","pretty":"Attr::name","meta":{"structured":1,"pretty":"Attr::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Attr#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Attr#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Attr_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8438"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AttributeNameValue#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AttributeNameValue#name.","pretty":"AttributeNameValue::name","meta":{"structured":1,"pretty":"AttributeNameValue::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AttributeNameValue#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AttributeNameValue#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AttributeNameValue_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#135"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioBufferSourceNode#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioBufferSourceNode#start().","pretty":"AudioBufferSourceNode::start","meta":{"structured":1,"pretty":"AudioBufferSourceNode::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioBufferSourceNode#start().","js_sym":"#start","type_pretty":"number | undefined) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioBufferSourceNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AudioBufferSourceNode_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioScheduledSourceNode#start()."}],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8498"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioParam#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioParam#name.","pretty":"AudioParam::name","meta":{"structured":1,"pretty":"AudioParam::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioParam#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioParam#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AudioParam_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8739"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioScheduledSourceNode#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioScheduledSourceNode#start().","pretty":"AudioScheduledSourceNode::start","meta":{"structured":1,"pretty":"AudioScheduledSourceNode::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioScheduledSourceNode#start().","js_sym":"#start","type_pretty":"number | undefined) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AudioScheduledSourceNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AudioScheduledSourceNode_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_generated/lib.gecko.dom.d.ts/AudioBufferSourceNode#start()."],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8806"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/BoxQuadOptions#box.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BoxQuadOptions#box.","pretty":"BoxQuadOptions::box","meta":{"structured":1,"pretty":"BoxQuadOptions::box","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BoxQuadOptions#box.","js_sym":"#box","type_pretty":"CSSBoxType | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BoxQuadOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_BoxQuadOptions_box"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#514"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/BroadcastChannel#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BroadcastChannel#name.","pretty":"BroadcastChannel::name","meta":{"structured":1,"pretty":"BroadcastChannel::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BroadcastChannel#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BroadcastChannel#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_BroadcastChannel_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9234"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#name.","pretty":"BrowsingContext::name","meta":{"structured":1,"pretty":"BrowsingContext::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_BrowsingContext_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9327"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#window.","pretty":"BrowsingContext::window","meta":{"structured":1,"pretty":"BrowsingContext::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#window.","js_sym":"#window","type_pretty":"WindowProxy | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BrowsingContext#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_BrowsingContext_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9363"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#end.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#end.","pretty":"BufferRange::end","meta":{"structured":1,"pretty":"BufferRange::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#end.","js_sym":"#end","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_BufferRange_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#523"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#start.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#start.","pretty":"BufferRange::start","meta":{"structured":1,"pretty":"BufferRange::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#start.","js_sym":"#start","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/BufferRange#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_BufferRange_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#525"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSContainerCondition#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSContainerCondition#name.","pretty":"CSSContainerCondition::name","meta":{"structured":1,"pretty":"CSSContainerCondition::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSContainerCondition#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSContainerCondition#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSContainerCondition_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#541"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCounterStyleRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCounterStyleRule#name.","pretty":"CSSCounterStyleRule::name","meta":{"structured":1,"pretty":"CSSCounterStyleRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCounterStyleRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCounterStyleRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSCounterStyleRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9574"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCustomMediaRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCustomMediaRule#name.","pretty":"CSSCustomMediaRule::name","meta":{"structured":1,"pretty":"CSSCustomMediaRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCustomMediaRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSCustomMediaRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSCustomMediaRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9603"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSFontPaletteValuesRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSFontPaletteValuesRule#name.","pretty":"CSSFontPaletteValuesRule::name","meta":{"structured":1,"pretty":"CSSFontPaletteValuesRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSFontPaletteValuesRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSFontPaletteValuesRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSFontPaletteValuesRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9702"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSKeyframesRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSKeyframesRule#name.","pretty":"CSSKeyframesRule::name","meta":{"structured":1,"pretty":"CSSKeyframesRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSKeyframesRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSKeyframesRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSKeyframesRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9823"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSLayerBlockRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSLayerBlockRule#name.","pretty":"CSSLayerBlockRule::name","meta":{"structured":1,"pretty":"CSSLayerBlockRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSLayerBlockRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSLayerBlockRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSLayerBlockRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9894"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSMarginRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSMarginRule#name.","pretty":"CSSMarginRule::name","meta":{"structured":1,"pretty":"CSSMarginRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSMarginRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSMarginRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSMarginRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#9920"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryDescriptors#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryDescriptors#width.","pretty":"CSSPositionTryDescriptors::width","meta":{"structured":1,"pretty":"CSSPositionTryDescriptors::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryDescriptors#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryDescriptors#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSPositionTryDescriptors_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#10334"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryRule#name.","pretty":"CSSPositionTryRule::name","meta":{"structured":1,"pretty":"CSSPositionTryRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPositionTryRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSPositionTryRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#10340"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPropertyRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPropertyRule#name.","pretty":"CSSPropertyRule::name","meta":{"structured":1,"pretty":"CSSPropertyRule::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPropertyRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSPropertyRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSPropertyRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#10359"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#end.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#end.","pretty":"CSSScopeRule::end","meta":{"structured":1,"pretty":"CSSScopeRule::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#end.","js_sym":"#end","type_pretty":"string | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSScopeRule_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#10532"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#start.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#start.","pretty":"CSSScopeRule::start","meta":{"structured":1,"pretty":"CSSScopeRule::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#start.","js_sym":"#start","type_pretty":"string | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSScopeRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSScopeRule_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#10534"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#width.","pretty":"CSSStyleProperties::width","meta":{"structured":1,"pretty":"CSSStyleProperties::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSStyleProperties_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#11865"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ChromeFilePropertyBag#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ChromeFilePropertyBag#name.","pretty":"ChromeFilePropertyBag::name","meta":{"structured":1,"pretty":"ChromeFilePropertyBag::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ChromeFilePropertyBag#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ChromeFilePropertyBag#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ChromeFilePropertyBag_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#715"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#info().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#info().","pretty":"Console::info","meta":{"structured":1,"pretty":"Console::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#info().","js_sym":"#info","type_pretty":"any[]) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_console_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43322"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#info().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#info().","pretty":"ConsoleInstance::info","meta":{"structured":1,"pretty":"ConsoleInstance::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#info().","js_sym":"#info","type_pretty":"any[]) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ConsoleInstance_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#13126"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieInit#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieInit#name.","pretty":"CookieInit::name","meta":{"structured":1,"pretty":"CookieInit::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieInit#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CookieInit_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#952"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieListItem#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieListItem#name.","pretty":"CookieListItem::name","meta":{"structured":1,"pretty":"CookieListItem::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieListItem#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieListItem#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CookieListItem_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#965"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreDeleteOptions#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreDeleteOptions#name.","pretty":"CookieStoreDeleteOptions::name","meta":{"structured":1,"pretty":"CookieStoreDeleteOptions::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreDeleteOptions#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreDeleteOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CookieStoreDeleteOptions_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#974"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreGetOptions#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreGetOptions#name.","pretty":"CookieStoreGetOptions::name","meta":{"structured":1,"pretty":"CookieStoreGetOptions::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreGetOptions#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CookieStoreGetOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CookieStoreGetOptions_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#983"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMException#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMException#name.","pretty":"DOMException::name","meta":{"structured":1,"pretty":"DOMException::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMException#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMException#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DOMException_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#13493"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRect#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRect#width.","pretty":"DOMRect::width","meta":{"structured":1,"pretty":"DOMRect::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRect#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRect#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DOMRect_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#13944"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectInit#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectInit#width.","pretty":"DOMRectInit::width","meta":{"structured":1,"pretty":"DOMRectInit::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectInit#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DOMRectInit_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1107"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectReadOnly#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectReadOnly#width.","pretty":"DOMRectReadOnly::width","meta":{"structured":1,"pretty":"DOMRectReadOnly::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectReadOnly#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DOMRectReadOnly#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DOMRectReadOnly_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#13989"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Directory#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Directory#name.","pretty":"Directory::name","meta":{"structured":1,"pretty":"Directory::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Directory#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Directory#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Directory_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#14345"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentOrShadowRoot#activeElement.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentOrShadowRoot#activeElement.","pretty":"DocumentOrShadowRoot::activeElement","meta":{"structured":1,"pretty":"DocumentOrShadowRoot::activeElement","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentOrShadowRoot#activeElement.","js_sym":"#activeElement","type_pretty":"Element | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentOrShadowRoot#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DocumentOrShadowRoot_activeElement"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#14875"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPicture#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPicture#window.","pretty":"DocumentPictureInPicture::window","meta":{"structured":1,"pretty":"DocumentPictureInPicture::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPicture#window.","js_sym":"#window","type_pretty":"Window | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPicture#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DocumentPictureInPicture_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#14914"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEvent#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEvent#window.","pretty":"DocumentPictureInPictureEvent::window","meta":{"structured":1,"pretty":"DocumentPictureInPictureEvent::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEvent#window.","js_sym":"#window","type_pretty":"Window","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DocumentPictureInPictureEvent_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#14936"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEventInit#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEventInit#window.","pretty":"DocumentPictureInPictureEventInit::window","meta":{"structured":1,"pretty":"DocumentPictureInPictureEventInit::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEventInit#window.","js_sym":"#window","type_pretty":"Window","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DocumentPictureInPictureEventInit_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1305"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureOptions#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureOptions#width.","pretty":"DocumentPictureInPictureOptions::width","meta":{"structured":1,"pretty":"DocumentPictureInPictureOptions::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureOptions#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentPictureInPictureOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DocumentPictureInPictureOptions_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1316"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentType#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentType#name.","pretty":"DocumentType::name","meta":{"structured":1,"pretty":"DocumentType::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentType#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/DocumentType#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_DocumentType_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#14960"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#getAttribute().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#getAttribute().","pretty":"Element::getAttribute","meta":{"structured":1,"pretty":"Element::getAttribute","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#getAttribute().","js_sym":"#getAttribute","type_pretty":"string) => string | null","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Element_getAttribute"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#15326"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#getBoundingClientRect().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#getBoundingClientRect().","pretty":"Element::getBoundingClientRect","meta":{"structured":1,"pretty":"Element::getBoundingClientRect","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#getBoundingClientRect().","js_sym":"#getBoundingClientRect","type_pretty":"(method) getBoundingClientRect() => DOMRect","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Element_getBoundingClientRect"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#15336"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#hasAttribute().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#hasAttribute().","pretty":"Element::hasAttribute","meta":{"structured":1,"pretty":"Element::hasAttribute","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#hasAttribute().","js_sym":"#hasAttribute","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Element_hasAttribute"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#15363"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#is.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#is.","pretty":"ElementCreationOptions::is","meta":{"structured":1,"pretty":"ElementCreationOptions::is","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#is.","js_sym":"#is","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ElementCreationOptions_is"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1395"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Exception#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Exception#name.","pretty":"Exception::name","meta":{"structured":1,"pretty":"Exception::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Exception#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Exception#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Exception_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#15782"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/File#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/File#name.","pretty":"File::name","meta":{"structured":1,"pretty":"File::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/File#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/File#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_File_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#15900"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystem#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystem#name.","pretty":"FileSystem::name","meta":{"structured":1,"pretty":"FileSystem::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystem#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystem#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FileSystem_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16003"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemEntry#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemEntry#name.","pretty":"FileSystemEntry::name","meta":{"structured":1,"pretty":"FileSystemEntry::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemEntry#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemEntry#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FileSystemEntry_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16087"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemHandle#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemHandle#name.","pretty":"FileSystemHandle::name","meta":{"structured":1,"pretty":"FileSystemHandle::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemHandle#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FileSystemHandle#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FileSystemHandle_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16138"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFace#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFace#width.","pretty":"FontFace::width","meta":{"structured":1,"pretty":"FontFace::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFace#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFace#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FontFace_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16348"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceDescriptors#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceDescriptors#width.","pretty":"FontFaceDescriptors::width","meta":{"structured":1,"pretty":"FontFaceDescriptors::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceDescriptors#width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceDescriptors#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FontFaceDescriptors_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1693"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#info.","pretty":"GPUAdapter::info","meta":{"structured":1,"pretty":"GPUAdapter::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#info.","js_sym":"#info","type_pretty":"GPUAdapterInfo","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUAdapter_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16594"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUComputePassEncoder#end().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUComputePassEncoder#end().","pretty":"GPUComputePassEncoder::end","meta":{"structured":1,"pretty":"GPUComputePassEncoder::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUComputePassEncoder#end().","js_sym":"#end","type_pretty":"(method) end() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUComputePassEncoder#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUComputePassEncoder_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16838"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUExtent3DDict#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUExtent3DDict#width.","pretty":"GPUExtent3DDict::width","meta":{"structured":1,"pretty":"GPUExtent3DDict::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUExtent3DDict#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUExtent3DDict#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUExtent3DDict_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1923"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassEncoder#end().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassEncoder#end().","pretty":"GPURenderPassEncoder::end","meta":{"structured":1,"pretty":"GPURenderPassEncoder::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassEncoder#end().","js_sym":"#end","type_pretty":"(method) end() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassEncoder#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPURenderPassEncoder_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#17162"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#width.","pretty":"GPUTexture::width","meta":{"structured":1,"pretty":"GPUTexture::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUTexture_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#17347"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanEventRecord#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanEventRecord#name.","pretty":"GleanEventRecord::name","meta":{"structured":1,"pretty":"GleanEventRecord::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanEventRecord#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanEventRecord#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GleanEventRecord_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2371"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimespan#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimespan#start().","pretty":"GleanTimespan::start","meta":{"structured":1,"pretty":"GleanTimespan::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimespan#start().","js_sym":"#start","type_pretty":"(method) start() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimespan#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GleanTimespan_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18057"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimingDistribution#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimingDistribution#start().","pretty":"GleanTimingDistribution::start","meta":{"structured":1,"pretty":"GleanTimingDistribution::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimingDistribution#start().","js_sym":"#start","type_pretty":"(method) start() => number","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GleanTimingDistribution#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GleanTimingDistribution_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18080"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GridArea#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridArea#name.","pretty":"GridArea::name","meta":{"structured":1,"pretty":"GridArea::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridArea#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridArea#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GridArea_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18486"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GridLine#start.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridLine#start.","pretty":"GridLine::start","meta":{"structured":1,"pretty":"GridLine::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridLine#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridLine#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GridLine_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18528"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GridTrack#start.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridTrack#start.","pretty":"GridTrack::start","meta":{"structured":1,"pretty":"GridTrack::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridTrack#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GridTrack#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GridTrack_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18561"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLAnchorElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLAnchorElement#name.","pretty":"HTMLAnchorElement::name","meta":{"structured":1,"pretty":"HTMLAnchorElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLAnchorElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLAnchorElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLAnchorElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18618"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLButtonElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLButtonElement#name.","pretty":"HTMLButtonElement::name","meta":{"structured":1,"pretty":"HTMLButtonElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLButtonElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLButtonElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLButtonElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18787"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLCanvasElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLCanvasElement#width.","pretty":"HTMLCanvasElement::width","meta":{"structured":1,"pretty":"HTMLCanvasElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLCanvasElement#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLCanvasElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLCanvasElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18826"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLDetailsElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLDetailsElement#name.","pretty":"HTMLDetailsElement::name","meta":{"structured":1,"pretty":"HTMLDetailsElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLDetailsElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLDetailsElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLDetailsElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#18925"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#name.","pretty":"HTMLEmbedElement::name","meta":{"structured":1,"pretty":"HTMLEmbedElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLEmbedElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19109"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#width.","pretty":"HTMLEmbedElement::width","meta":{"structured":1,"pretty":"HTMLEmbedElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLEmbedElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLEmbedElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19115"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFieldSetElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFieldSetElement#name.","pretty":"HTMLFieldSetElement::name","meta":{"structured":1,"pretty":"HTMLFieldSetElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFieldSetElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFieldSetElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLFieldSetElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19146"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFormElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFormElement#name.","pretty":"HTMLFormElement::name","meta":{"structured":1,"pretty":"HTMLFormElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFormElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFormElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLFormElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19227"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFrameElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFrameElement#name.","pretty":"HTMLFrameElement::name","meta":{"structured":1,"pretty":"HTMLFrameElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFrameElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLFrameElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLFrameElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19275"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLHRElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLHRElement#width.","pretty":"HTMLHRElement::width","meta":{"structured":1,"pretty":"HTMLHRElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLHRElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLHRElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLHRElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19328"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#name.","pretty":"HTMLIFrameElement::name","meta":{"structured":1,"pretty":"HTMLIFrameElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLIFrameElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19427"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#width.","pretty":"HTMLIFrameElement::width","meta":{"structured":1,"pretty":"HTMLIFrameElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLIFrameElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLIFrameElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19439"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#name.","pretty":"HTMLImageElement::name","meta":{"structured":1,"pretty":"HTMLImageElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLImageElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19486"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#width.","pretty":"HTMLImageElement::width","meta":{"structured":1,"pretty":"HTMLImageElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLImageElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLImageElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19504"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#name.","pretty":"HTMLInputElement::name","meta":{"structured":1,"pretty":"HTMLInputElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLInputElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19601"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#width.","pretty":"HTMLInputElement::width","meta":{"structured":1,"pretty":"HTMLInputElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLInputElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19647"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMapElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMapElement#name.","pretty":"HTMLMapElement::name","meta":{"structured":1,"pretty":"HTMLMapElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMapElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMapElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLMapElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19845"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#start().","pretty":"HTMLMarqueeElement::start","meta":{"structured":1,"pretty":"HTMLMarqueeElement::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#start().","js_sym":"#start","type_pretty":"(method) start() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLMarqueeElement_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19884"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#width.","pretty":"HTMLMarqueeElement::width","meta":{"structured":1,"pretty":"HTMLMarqueeElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMarqueeElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLMarqueeElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19882"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#name.","pretty":"HTMLMetaElement::name","meta":{"structured":1,"pretty":"HTMLMetaElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLMetaElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20134"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOListElement#start.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOListElement#start.","pretty":"HTMLOListElement::start","meta":{"structured":1,"pretty":"HTMLOListElement::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOListElement#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOListElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLOListElement_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20205"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#name.","pretty":"HTMLObjectElement::name","meta":{"structured":1,"pretty":"HTMLObjectElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLObjectElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20250"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#width.","pretty":"HTMLObjectElement::width","meta":{"structured":1,"pretty":"HTMLObjectElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLObjectElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLObjectElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20264"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus().","pretty":"HTMLOrSVGOrMathMLElement::focus","meta":{"structured":1,"pretty":"HTMLOrSVGOrMathMLElement::focus","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus().","js_sym":"#focus","type_pretty":"FocusOptions | undefined) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLOrSVGOrMathMLElement_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_toolkit/content/widgets/lit-select-control.mjs/SelectControlBaseElement#focus().","S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#focus().","S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#focus().","S_js_typescript_toolkit/content/widgets/moz-box-item/moz-box-item.mjs/MozBoxItem#focus().","S_js_typescript_browser/components/preferences/widgets/setting-control/setting-control.mjs/SettingControl#focus()."],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20374"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOutputElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOutputElement#name.","pretty":"HTMLOutputElement::name","meta":{"structured":1,"pretty":"HTMLOutputElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOutputElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOutputElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLOutputElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20388"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLParamElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLParamElement#name.","pretty":"HTMLParamElement::name","meta":{"structured":1,"pretty":"HTMLParamElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLParamElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLParamElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLParamElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20438"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLPreElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLPreElement#width.","pretty":"HTMLPreElement::width","meta":{"structured":1,"pretty":"HTMLPreElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLPreElement#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLPreElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLPreElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20476"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSelectElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSelectElement#name.","pretty":"HTMLSelectElement::name","meta":{"structured":1,"pretty":"HTMLSelectElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSelectElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSelectElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLSelectElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20599"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSlotElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSlotElement#name.","pretty":"HTMLSlotElement::name","meta":{"structured":1,"pretty":"HTMLSlotElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSlotElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSlotElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLSlotElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20677"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSourceElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSourceElement#width.","pretty":"HTMLSourceElement::width","meta":{"structured":1,"pretty":"HTMLSourceElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSourceElement#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLSourceElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLSourceElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20712"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableCellElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableCellElement#width.","pretty":"HTMLTableCellElement::width","meta":{"structured":1,"pretty":"HTMLTableCellElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableCellElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableCellElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLTableCellElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20814"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableColElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableColElement#width.","pretty":"HTMLTableColElement::width","meta":{"structured":1,"pretty":"HTMLTableColElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableColElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableColElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLTableColElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20841"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableElement#width.","pretty":"HTMLTableElement::width","meta":{"structured":1,"pretty":"HTMLTableElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableElement#width.","js_sym":"#width","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTableElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLTableElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20884"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTextAreaElement#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTextAreaElement#name.","pretty":"HTMLTextAreaElement::name","meta":{"structured":1,"pretty":"HTMLTextAreaElement::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTextAreaElement#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTextAreaElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLTextAreaElement_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21036"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLVideoElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLVideoElement#width.","pretty":"HTMLVideoElement::width","meta":{"structured":1,"pretty":"HTMLVideoElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLVideoElement#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLVideoElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLVideoElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21244"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabase#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabase#name.","pretty":"IDBDatabase::name","meta":{"structured":1,"pretty":"IDBDatabase::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabase#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabase#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_IDBDatabase_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21471"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabaseInfo#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabaseInfo#name.","pretty":"IDBDatabaseInfo::name","meta":{"structured":1,"pretty":"IDBDatabaseInfo::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabaseInfo#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBDatabaseInfo#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_IDBDatabaseInfo_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2427"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBIndex#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBIndex#name.","pretty":"IDBIndex::name","meta":{"structured":1,"pretty":"IDBIndex::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBIndex#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBIndex#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_IDBIndex_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21540"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBObjectStore#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBObjectStore#name.","pretty":"IDBObjectStore::name","meta":{"structured":1,"pretty":"IDBObjectStore::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBObjectStore#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/IDBObjectStore#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_IDBObjectStore_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21612"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageBitmap#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageBitmap#width.","pretty":"ImageBitmap::width","meta":{"structured":1,"pretty":"ImageBitmap::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageBitmap#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageBitmap#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ImageBitmap_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21862"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageData#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageData#width.","pretty":"ImageData::width","meta":{"structured":1,"pretty":"ImageData::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageData#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageData#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ImageData_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21955"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageSize#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageSize#width.","pretty":"ImageSize::width","meta":{"structured":1,"pretty":"ImageSize::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageSize#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ImageSize#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ImageSize_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2581"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorCSSPropertyDefinition#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorCSSPropertyDefinition#name.","pretty":"InspectorCSSPropertyDefinition::name","meta":{"structured":1,"pretty":"InspectorCSSPropertyDefinition::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorCSSPropertyDefinition#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorCSSPropertyDefinition#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_InspectorCSSPropertyDefinition_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2692"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorFontFace#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorFontFace#name.","pretty":"InspectorFontFace::name","meta":{"structured":1,"pretty":"InspectorFontFace::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorFontFace#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorFontFace#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_InspectorFontFace_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#22152"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationAxis#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationAxis#name.","pretty":"InspectorVariationAxis::name","meta":{"structured":1,"pretty":"InspectorVariationAxis::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationAxis#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationAxis#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_InspectorVariationAxis_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2768"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationInstance#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationInstance#name.","pretty":"InspectorVariationInstance::name","meta":{"structured":1,"pretty":"InspectorVariationInstance::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationInstance#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/InspectorVariationInstance#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_InspectorVariationInstance_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2775"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/JSActor#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/JSActor#name.","pretty":"JSActor::name","meta":{"structured":1,"pretty":"JSActor::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/JSActor#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/JSActor#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_JSActor_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#22340"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/JSWindowActorChild#document.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/JSWindowActorChild#document.","pretty":"JSWindowActorChild::document","meta":{"structured":1,"pretty":"JSWindowActorChild::document","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/JSWindowActorChild#document.","js_sym":"#document","type_pretty":"Document | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/JSWindowActorChild#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_JSWindowActorChild_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#22386"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/L10nFileSource#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/L10nFileSource#name.","pretty":"L10nFileSource::name","meta":{"structured":1,"pretty":"L10nFileSource::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/L10nFileSource#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/L10nFileSource#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_L10nFileSource_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#23638"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Lock#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Lock#name.","pretty":"Lock::name","meta":{"structured":1,"pretty":"Lock::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Lock#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Lock#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Lock_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#23842"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/LockInfo#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/LockInfo#name.","pretty":"LockInfo::name","meta":{"structured":1,"pretty":"LockInfo::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/LockInfo#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/LockInfo#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_LockInfo_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3150"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MIDIPort#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MIDIPort#name.","pretty":"MIDIPort::name","meta":{"structured":1,"pretty":"MIDIPort::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MIDIPort#name.","js_sym":"#name","type_pretty":"string | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MIDIPort#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MIDIPort_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24025"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaController#focus().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaController#focus().","pretty":"MediaController::focus","meta":{"structured":1,"pretty":"MediaController::focus","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaController#focus().","js_sym":"#focus","type_pretty":"(method) focus() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaController#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaController_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24318"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaRecorder#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaRecorder#start().","pretty":"MediaRecorder::start","meta":{"structured":1,"pretty":"MediaRecorder::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaRecorder#start().","js_sym":"#start","type_pretty":"number | undefined) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaRecorder#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaRecorder_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24727"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaStreamError#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaStreamError#name.","pretty":"MediaStreamError::name","meta":{"structured":1,"pretty":"MediaStreamError::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaStreamError#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaStreamError#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaStreamError_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24910"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackCapabilities#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackCapabilities#width.","pretty":"MediaTrackCapabilities::width","meta":{"structured":1,"pretty":"MediaTrackCapabilities::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackCapabilities#width.","js_sym":"#width","type_pretty":"ULongRange | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackCapabilities#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaTrackCapabilities_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3681"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackConstraintSet#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackConstraintSet#width.","pretty":"MediaTrackConstraintSet::width","meta":{"structured":1,"pretty":"MediaTrackConstraintSet::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackConstraintSet#width.","js_sym":"#width","type_pretty":"ConstrainLong | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackConstraintSet#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaTrackConstraintSet_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3720"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSettings#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSettings#width.","pretty":"MediaTrackSettings::width","meta":{"structured":1,"pretty":"MediaTrackSettings::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSettings#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSettings#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaTrackSettings_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3764"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSupportedConstraints#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSupportedConstraints#width.","pretty":"MediaTrackSupportedConstraints::width","meta":{"structured":1,"pretty":"MediaTrackSupportedConstraints::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSupportedConstraints#width.","js_sym":"#width","type_pretty":"boolean | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaTrackSupportedConstraints#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaTrackSupportedConstraints_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3813"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MessagePort#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MessagePort#start().","pretty":"MessagePort::start","meta":{"structured":1,"pretty":"MessagePort::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MessagePort#start().","js_sym":"#start","type_pretty":"(method) start() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MessagePort#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MessagePort_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#25124"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ModelContextTool#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ModelContextTool#name.","pretty":"ModelContextTool::name","meta":{"structured":1,"pretty":"ModelContextTool::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ModelContextTool#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ModelContextTool#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ModelContextTool_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3846"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MozHTTPHeader#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozHTTPHeader#name.","pretty":"MozHTTPHeader::name","meta":{"structured":1,"pretty":"MozHTTPHeader::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozHTTPHeader#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozHTTPHeader#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MozHTTPHeader_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3911"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#info.","pretty":"NavigateEvent::info","meta":{"structured":1,"pretty":"NavigateEvent::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#info.","js_sym":"#info","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_NavigateEvent_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#25686"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#info.","pretty":"NavigateEventInit::info","meta":{"structured":1,"pretty":"NavigateEventInit::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#info.","js_sym":"#info","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_NavigateEventInit_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4008"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#info.","pretty":"NavigationOptions::info","meta":{"structured":1,"pretty":"NavigationOptions::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#info.","js_sym":"#info","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_NavigationOptions_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4046"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Nyx/start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Nyx/start().","pretty":"start","meta":{"structured":1,"pretty":"start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Nyx/start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Core/General","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Nyx_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43127"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/OffscreenCanvas#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/OffscreenCanvas#width.","pretty":"OffscreenCanvas::width","meta":{"structured":1,"pretty":"OffscreenCanvas::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/OffscreenCanvas#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/OffscreenCanvas#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_OffscreenCanvas_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#26600"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PCErrorData#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PCErrorData#name.","pretty":"PCErrorData::name","meta":{"structured":1,"pretty":"PCErrorData::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PCErrorData#name.","js_sym":"#name","type_pretty":"PCError","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PCErrorData#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PCErrorData_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4249"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#querySelector().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#querySelector().","pretty":"ParentNode::querySelector","meta":{"structured":1,"pretty":"ParentNode::querySelector","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#querySelector().","js_sym":"#querySelector","type_pretty":"MathMLElementTagNameMap[K] | null; ...","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ParentNode_querySelector"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PayerErrors#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PayerErrors#name.","pretty":"PayerErrors::name","meta":{"structured":1,"pretty":"PayerErrors::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PayerErrors#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PayerErrors#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PayerErrors_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4336"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntry#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntry#name.","pretty":"PerformanceEntry::name","meta":{"structured":1,"pretty":"PerformanceEntry::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntry#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntry#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceEntry_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#27265"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEvent#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEvent#name.","pretty":"PerformanceEntryEvent::name","meta":{"structured":1,"pretty":"PerformanceEntryEvent::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEvent#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceEntryEvent_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#27288"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEventInit#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEventInit#name.","pretty":"PerformanceEntryEventInit::name","meta":{"structured":1,"pretty":"PerformanceEntryEventInit::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEventInit#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceEntryEventInit_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4459"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryFilterOptions#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryFilterOptions#name.","pretty":"PerformanceEntryFilterOptions::name","meta":{"structured":1,"pretty":"PerformanceEntryFilterOptions::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryFilterOptions#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceEntryFilterOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceEntryFilterOptions_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4472"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#end.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#end.","pretty":"PerformanceMeasureOptions::end","meta":{"structured":1,"pretty":"PerformanceMeasureOptions::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#end.","js_sym":"#end","type_pretty":"string | number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceMeasureOptions_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4488"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#start.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#start.","pretty":"PerformanceMeasureOptions::start","meta":{"structured":1,"pretty":"PerformanceMeasureOptions::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#start.","js_sym":"#start","type_pretty":"string | number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceMeasureOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceMeasureOptions_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4490"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceServerTiming#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceServerTiming#name.","pretty":"PerformanceServerTiming::name","meta":{"structured":1,"pretty":"PerformanceServerTiming::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceServerTiming#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PerformanceServerTiming#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PerformanceServerTiming_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#27540"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PermissionStatus#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PermissionStatus#name.","pretty":"PermissionStatus::name","meta":{"structured":1,"pretty":"PermissionStatus::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PermissionStatus#name.","js_sym":"#name","type_pretty":"PermissionName","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PermissionStatus#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PermissionStatus_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#27631"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PictureInPictureWindow#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PictureInPictureWindow#width.","pretty":"PictureInPictureWindow::width","meta":{"structured":1,"pretty":"PictureInPictureWindow::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PictureInPictureWindow#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PictureInPictureWindow#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PictureInPictureWindow_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#27690"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Plugin#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Plugin#name.","pretty":"Plugin::name","meta":{"structured":1,"pretty":"Plugin::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Plugin#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Plugin#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Plugin_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#28077"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEvent#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEvent#width.","pretty":"PointerEvent::width","meta":{"structured":1,"pretty":"PointerEvent::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEvent#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PointerEvent_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#28162"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEventInit#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEventInit#width.","pretty":"PointerEventInit::width","meta":{"structured":1,"pretty":"PointerEventInit::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEventInit#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PointerEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PointerEventInit_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4838"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PredictRemoteTypeOptions#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PredictRemoteTypeOptions#window.","pretty":"PredictRemoteTypeOptions::window","meta":{"structured":1,"pretty":"PredictRemoteTypeOptions::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PredictRemoteTypeOptions#window.","js_sym":"#window","type_pretty":"Window | null | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PredictRemoteTypeOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PredictRemoteTypeOptions_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4907"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ProfilerCounterOptions#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ProfilerCounterOptions#name.","pretty":"ProfilerCounterOptions::name","meta":{"structured":1,"pretty":"ProfilerCounterOptions::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ProfilerCounterOptions#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ProfilerCounterOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ProfilerCounterOptions_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4932"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyDefinition#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyDefinition#name.","pretty":"PropertyDefinition::name","meta":{"structured":1,"pretty":"PropertyDefinition::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyDefinition#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyDefinition#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PropertyDefinition_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4977"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyPref#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyPref#name.","pretty":"PropertyPref::name","meta":{"structured":1,"pretty":"PropertyPref::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyPref#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PropertyPref#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PropertyPref_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4993"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialEntity#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialEntity#name.","pretty":"PublicKeyCredentialEntity::name","meta":{"structured":1,"pretty":"PublicKeyCredentialEntity::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialEntity#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialEntity#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PublicKeyCredentialEntity_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#5064"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialUserEntityJSON#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialUserEntityJSON#name.","pretty":"PublicKeyCredentialUserEntityJSON::name","meta":{"structured":1,"pretty":"PublicKeyCredentialUserEntityJSON::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialUserEntityJSON#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/PublicKeyCredentialUserEntityJSON#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_PublicKeyCredentialUserEntityJSON_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#5126"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCEncodedVideoFrameMetadata#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCEncodedVideoFrameMetadata#width.","pretty":"RTCEncodedVideoFrameMetadata::width","meta":{"structured":1,"pretty":"RTCEncodedVideoFrameMetadata::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCEncodedVideoFrameMetadata#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCEncodedVideoFrameMetadata#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_RTCEncodedVideoFrameMetadata_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#5351"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCIdentityAssertion#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCIdentityAssertion#name.","pretty":"RTCIdentityAssertion::name","meta":{"structured":1,"pretty":"RTCIdentityAssertion::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCIdentityAssertion#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCIdentityAssertion#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_RTCIdentityAssertion_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#5480"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoFrameHistoryEntryInternal#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoFrameHistoryEntryInternal#width.","pretty":"RTCVideoFrameHistoryEntryInternal::width","meta":{"structured":1,"pretty":"RTCVideoFrameHistoryEntryInternal::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoFrameHistoryEntryInternal#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoFrameHistoryEntryInternal#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_RTCVideoFrameHistoryEntryInternal_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6045"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoSourceStats#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoSourceStats#width.","pretty":"RTCVideoSourceStats::width","meta":{"structured":1,"pretty":"RTCVideoSourceStats::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoSourceStats#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/RTCVideoSourceStats#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_RTCVideoSourceStats_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6063"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#getBoundingClientRect().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#getBoundingClientRect().","pretty":"Range::getBoundingClientRect","meta":{"structured":1,"pretty":"Range::getBoundingClientRect","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#getBoundingClientRect().","js_sym":"#getBoundingClientRect","type_pretty":"(method) getBoundingClientRect() => DOMRect","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Range_getBoundingClientRect"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#29209"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ReceiveMessageArgument#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ReceiveMessageArgument#name.","pretty":"ReceiveMessageArgument::name","meta":{"structured":1,"pretty":"ReceiveMessageArgument::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ReceiveMessageArgument#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ReceiveMessageArgument#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ReceiveMessageArgument_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6113"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ResizeObserverOptions#box.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ResizeObserverOptions#box.","pretty":"ResizeObserverOptions::box","meta":{"structured":1,"pretty":"ResizeObserverOptions::box","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ResizeObserverOptions#box.","js_sym":"#box","type_pretty":"ResizeObserverBoxOptions | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ResizeObserverOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ResizeObserverOptions_box"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6206"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#ok.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#ok.","pretty":"Response::ok","meta":{"structured":1,"pretty":"Response::ok","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#ok.","js_sym":"#ok","type_pretty":"boolean","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Response_ok"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#29550"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterElement#width.","pretty":"SVGFilterElement::width","meta":{"structured":1,"pretty":"SVGFilterElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGFilterElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#30843"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterPrimitiveStandardAttributes#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterPrimitiveStandardAttributes#width.","pretty":"SVGFilterPrimitiveStandardAttributes::width","meta":{"structured":1,"pretty":"SVGFilterPrimitiveStandardAttributes::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterPrimitiveStandardAttributes#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGFilterPrimitiveStandardAttributes#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGFilterPrimitiveStandardAttributes_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#30868"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGForeignObjectElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGForeignObjectElement#width.","pretty":"SVGForeignObjectElement::width","meta":{"structured":1,"pretty":"SVGForeignObjectElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGForeignObjectElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGForeignObjectElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGForeignObjectElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#30888"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGImageElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGImageElement#width.","pretty":"SVGImageElement::width","meta":{"structured":1,"pretty":"SVGImageElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGImageElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGImageElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGImageElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#31019"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGMaskElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGMaskElement#width.","pretty":"SVGMaskElement::width","meta":{"structured":1,"pretty":"SVGMaskElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGMaskElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGMaskElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGMaskElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#31273"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGPatternElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGPatternElement#width.","pretty":"SVGPatternElement::width","meta":{"structured":1,"pretty":"SVGPatternElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGPatternElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGPatternElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGPatternElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#31446"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRect#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRect#width.","pretty":"SVGRect::width","meta":{"structured":1,"pretty":"SVGRect::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRect#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRect#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGRect_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#31644"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRectElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRectElement#width.","pretty":"SVGRectElement::width","meta":{"structured":1,"pretty":"SVGRectElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRectElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGRectElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGRectElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#31667"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGSVGElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGSVGElement#width.","pretty":"SVGSVGElement::width","meta":{"structured":1,"pretty":"SVGSVGElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGSVGElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGSVGElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGSVGElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#31694"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGUseElement#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGUseElement#width.","pretty":"SVGUseElement::width","meta":{"structured":1,"pretty":"SVGUseElement::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGUseElement#width.","js_sym":"#width","type_pretty":"SVGAnimatedLength","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SVGUseElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SVGUseElement_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#32207"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerAttributeNamespace#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerAttributeNamespace#name.","pretty":"SanitizerAttributeNamespace::name","meta":{"structured":1,"pretty":"SanitizerAttributeNamespace::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerAttributeNamespace#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerAttributeNamespace#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SanitizerAttributeNamespace_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6250"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerElementNamespace#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerElementNamespace#name.","pretty":"SanitizerElementNamespace::name","meta":{"structured":1,"pretty":"SanitizerElementNamespace::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerElementNamespace#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SanitizerElementNamespace#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SanitizerElementNamespace_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6278"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Screen#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Screen#width.","pretty":"Screen::width","meta":{"structured":1,"pretty":"Screen::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Screen#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Screen#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Screen_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#32344"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ScrollAreaEvent#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ScrollAreaEvent#width.","pretty":"ScrollAreaEvent::width","meta":{"structured":1,"pretty":"ScrollAreaEvent::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ScrollAreaEvent#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ScrollAreaEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ScrollAreaEvent_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#32437"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechRecognition#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechRecognition#start().","pretty":"SpeechRecognition::start","meta":{"structured":1,"pretty":"SpeechRecognition::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechRecognition#start().","js_sym":"#start","type_pretty":"void; }","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechRecognition#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SpeechRecognition_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEvent#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEvent#name.","pretty":"SpeechSynthesisEvent::name","meta":{"structured":1,"pretty":"SpeechSynthesisEvent::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEvent#name.","js_sym":"#name","type_pretty":"string | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SpeechSynthesisEvent_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#33319"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEventInit#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEventInit#name.","pretty":"SpeechSynthesisEventInit::name","meta":{"structured":1,"pretty":"SpeechSynthesisEventInit::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEventInit#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SpeechSynthesisEventInit_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6543"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisVoice#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisVoice#name.","pretty":"SpeechSynthesisVoice::name","meta":{"structured":1,"pretty":"SpeechSynthesisVoice::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisVoice#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/SpeechSynthesisVoice#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_SpeechSynthesisVoice_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#33400"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEvent#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEvent#name.","pretty":"TCPSocketErrorEvent::name","meta":{"structured":1,"pretty":"TCPSocketErrorEvent::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEvent#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TCPSocketErrorEvent_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#33909"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEventInit#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEventInit#name.","pretty":"TCPSocketErrorEventInit::name","meta":{"structured":1,"pretty":"TCPSocketErrorEventInit::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEventInit#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TCPSocketErrorEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TCPSocketErrorEventInit_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6727"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TextMetrics#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TextMetrics#width.","pretty":"TextMetrics::width","meta":{"structured":1,"pretty":"TextMetrics::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TextMetrics#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TextMetrics#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TextMetrics_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#34676"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ThreadInfoDictionary#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ThreadInfoDictionary#name.","pretty":"ThreadInfoDictionary::name","meta":{"structured":1,"pretty":"ThreadInfoDictionary::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ThreadInfoDictionary#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ThreadInfoDictionary#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ThreadInfoDictionary_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6849"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#end().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#end().","pretty":"TimeRanges::end","meta":{"structured":1,"pretty":"TimeRanges::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#end().","js_sym":"#end","type_pretty":"number) => number","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TimeRanges_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#34856"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#start().","pretty":"TimeRanges::start","meta":{"structured":1,"pretty":"TimeRanges::start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#start().","js_sym":"#start","type_pretty":"number) => number","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeRanges#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TimeRanges_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#34858"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TreeColumn#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TreeColumn#width.","pretty":"TreeColumn::width","meta":{"structured":1,"pretty":"TreeColumn::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TreeColumn#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TreeColumn#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TreeColumn_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#35073"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TrustedTypePolicy#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TrustedTypePolicy#name.","pretty":"TrustedTypePolicy::name","meta":{"structured":1,"pretty":"TrustedTypePolicy::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TrustedTypePolicy#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TrustedTypePolicy#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TrustedTypePolicy_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#35296"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/UserInteraction/start().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UserInteraction/start().","pretty":"start","meta":{"structured":1,"pretty":"start","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UserInteraction/start().","js_sym":"#start","type_pretty":"boolean","kind":"method","subsystem":"Core/General","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_UserInteraction_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43265"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/VRServiceTest#end().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VRServiceTest#end().","pretty":"VRServiceTest::end","meta":{"structured":1,"pretty":"VRServiceTest::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VRServiceTest#end().","js_sym":"#end","type_pretty":"(method) end() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VRServiceTest#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_VRServiceTest_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#35888"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/VTTRegion#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VTTRegion#width.","pretty":"VTTRegion::width","meta":{"structured":1,"pretty":"VTTRegion::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VTTRegion#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VTTRegion#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_VTTRegion_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#36010"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoConfiguration#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoConfiguration#width.","pretty":"VideoConfiguration::width","meta":{"structured":1,"pretty":"VideoConfiguration::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoConfiguration#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoConfiguration#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_VideoConfiguration_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7148"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoEncoderConfig#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoEncoderConfig#width.","pretty":"VideoEncoderConfig::width","meta":{"structured":1,"pretty":"VideoEncoderConfig::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoEncoderConfig#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoEncoderConfig#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_VideoEncoderConfig_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7214"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoFrameCallbackMetadata#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoFrameCallbackMetadata#width.","pretty":"VideoFrameCallbackMetadata::width","meta":{"structured":1,"pretty":"VideoFrameCallbackMetadata::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoFrameCallbackMetadata#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VideoFrameCallbackMetadata#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_VideoFrameCallbackMetadata_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7286"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/VisualViewport#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VisualViewport#width.","pretty":"VisualViewport::width","meta":{"structured":1,"pretty":"VisualViewport::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VisualViewport#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/VisualViewport#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_VisualViewport_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#36352"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionInit#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionInit#name.","pretty":"WebExtensionInit::name","meta":{"structured":1,"pretty":"WebExtensionInit::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionInit#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WebExtensionInit_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7404"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionPolicy#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionPolicy#name.","pretty":"WebExtensionPolicy::name","meta":{"structured":1,"pretty":"WebExtensionPolicy::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionPolicy#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebExtensionPolicy#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WebExtensionPolicy_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#36764"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WebGLActiveInfo#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebGLActiveInfo#name.","pretty":"WebGLActiveInfo::name","meta":{"structured":1,"pretty":"WebGLActiveInfo::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebGLActiveInfo#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebGLActiveInfo#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WebGLActiveInfo_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#38767"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#document.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#document.","pretty":"Window::document","meta":{"structured":1,"pretty":"Window::document","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#document.","js_sym":"#document","type_pretty":"Document | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40773"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#focus().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#focus().","pretty":"Window::focus","meta":{"structured":1,"pretty":"Window::focus","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#focus().","js_sym":"#focus","type_pretty":"(method) focus() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40939"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#name.","pretty":"Window::name","meta":{"structured":1,"pretty":"Window::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40820"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#outerHeight.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#outerHeight.","pretty":"Window::outerHeight","meta":{"structured":1,"pretty":"Window::outerHeight","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#outerHeight.","js_sym":"#outerHeight","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_outerHeight"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40854"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#outerWidth.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#outerWidth.","pretty":"Window::outerWidth","meta":{"structured":1,"pretty":"Window::outerWidth","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#outerWidth.","js_sym":"#outerWidth","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_outerWidth"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40856"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#resizeTo().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#resizeTo().","pretty":"Window::resizeTo","meta":{"structured":1,"pretty":"Window::resizeTo","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#resizeTo().","js_sym":"#resizeTo","type_pretty":"number) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_resizeTo"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40998"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#window.","pretty":"Window::window","meta":{"structured":1,"pretty":"Window::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#window.","js_sym":"#window","type_pretty":"WindowProxy","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40912"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowRoot#window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowRoot#window.","pretty":"WindowRoot::window","meta":{"structured":1,"pretty":"WindowRoot::window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowRoot#window.","js_sym":"#window","type_pretty":"Window | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowRoot#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WindowRoot_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#41345"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WireframeTaggedRect#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WireframeTaggedRect#width.","pretty":"WireframeTaggedRect::width","meta":{"structured":1,"pretty":"WireframeTaggedRect::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WireframeTaggedRect#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WireframeTaggedRect#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WireframeTaggedRect_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7651"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WorkerOptions#name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WorkerOptions#name.","pretty":"WorkerOptions::name","meta":{"structured":1,"pretty":"WorkerOptions::name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WorkerOptions#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WorkerOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WorkerOptions_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7662"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/XRSession#end().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XRSession#end().","pretty":"XRSession::end","meta":{"structured":1,"pretty":"XRSession::end","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XRSession#end().","js_sym":"#end","type_pretty":"(method) end() => Promise","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XRSession#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_XRSession_end"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#42036"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/XRViewport#width.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XRViewport#width.","pretty":"XRViewport::width","meta":{"structured":1,"pretty":"XRViewport::width","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XRViewport#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XRViewport#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_XRViewport_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#42160"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/document.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/document.","pretty":"document","meta":{"structured":1,"pretty":"document","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/document.","js_sym":"#document","type_pretty":"Document | null","kind":"field","subsystem":"Core/General","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43888"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/focus().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/focus().","pretty":"focus","meta":{"structured":1,"pretty":"focus","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Core/General","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#44055"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/name.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/name.","pretty":"name","meta":{"structured":1,"pretty":"name","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/name.","js_sym":"#name","type_pretty":"void","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43936"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/outerHeight.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/outerHeight.","pretty":"outerHeight","meta":{"structured":1,"pretty":"outerHeight","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/outerHeight.","js_sym":"#outerHeight","type_pretty":"number","kind":"field","subsystem":"Core/General","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_outerHeight"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43970"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/outerWidth.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/outerWidth.","pretty":"outerWidth","meta":{"structured":1,"pretty":"outerWidth","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/outerWidth.","js_sym":"#outerWidth","type_pretty":"number","kind":"field","subsystem":"Core/General","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_outerWidth"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43972"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/resizeTo().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/resizeTo().","pretty":"resizeTo","meta":{"structured":1,"pretty":"resizeTo","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/resizeTo().","js_sym":"#resizeTo","type_pretty":"void","kind":"method","subsystem":"Core/General","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_resizeTo"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#44114"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/window.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/window.","pretty":"window","meta":{"structured":1,"pretty":"window","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/window.","js_sym":"#window","type_pretty":"WindowProxy","kind":"field","subsystem":"Core/General","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#44028"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:detectedAddressFormExt.GleanEventWithExtras:typeLiteral1003:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:detectedAddressFormExt.GleanEventWithExtras:typeLiteral1003:name.","pretty":"GleanImpl::address::typeLiteral995::detectedAddressFormExt::GleanEventWithExtras::typeLiteral1003::name","meta":{"structured":1,"pretty":"GleanImpl::address::typeLiteral995::detectedAddressFormExt::GleanEventWithExtras::typeLiteral1003::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:detectedAddressFormExt.GleanEventWithExtras:typeLiteral1003:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6221"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:filledAddressFormExt.GleanEventWithExtras:typeLiteral1009:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:filledAddressFormExt.GleanEventWithExtras:typeLiteral1009:name.","pretty":"GleanImpl::address::typeLiteral995::filledAddressFormExt::GleanEventWithExtras::typeLiteral1009::name","meta":{"structured":1,"pretty":"GleanImpl::address::typeLiteral995::filledAddressFormExt::GleanEventWithExtras::typeLiteral1009::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:filledAddressFormExt.GleanEventWithExtras:typeLiteral1009:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6227"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:filledOnFieldsUpdateAddressForm.GleanEventWithExtras:typeLiteral1011:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:filledOnFieldsUpdateAddressForm.GleanEventWithExtras:typeLiteral1011:name.","pretty":"GleanImpl::address::typeLiteral995::filledOnFieldsUpdateAddressForm::GleanEventWithExtras::typeLiteral1011::name","meta":{"structured":1,"pretty":"GleanImpl::address::typeLiteral995::filledOnFieldsUpdateAddressForm::GleanEventWithExtras::typeLiteral1011::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:filledOnFieldsUpdateAddressForm.GleanEventWithExtras:typeLiteral1011:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6229"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:submittedAddressFormExt.GleanEventWithExtras:typeLiteral1028:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:submittedAddressFormExt.GleanEventWithExtras:typeLiteral1028:name.","pretty":"GleanImpl::address::typeLiteral995::submittedAddressFormExt::GleanEventWithExtras::typeLiteral1028::name","meta":{"structured":1,"pretty":"GleanImpl::address::typeLiteral995::submittedAddressFormExt::GleanEventWithExtras::typeLiteral1028::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#address.typeLiteral995:submittedAddressFormExt.GleanEventWithExtras:typeLiteral1028:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6246"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#browserLaunchedToHandle.typeLiteral216:systemNotification.GleanEventWithExtras:typeLiteral217:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#browserLaunchedToHandle.typeLiteral216:systemNotification.GleanEventWithExtras:typeLiteral217:name.","pretty":"GleanImpl::browserLaunchedToHandle::typeLiteral216::systemNotification::GleanEventWithExtras::typeLiteral217::name","meta":{"structured":1,"pretty":"GleanImpl::browserLaunchedToHandle::typeLiteral216::systemNotification::GleanEventWithExtras::typeLiteral217::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#browserLaunchedToHandle.typeLiteral216:systemNotification.GleanEventWithExtras:typeLiteral217:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#699"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#characteristics.typeLiteral1296:outerHeight.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#characteristics.typeLiteral1296:outerHeight.","pretty":"GleanImpl::characteristics::typeLiteral1296::outerHeight","meta":{"structured":1,"pretty":"GleanImpl::characteristics::typeLiteral1296::outerHeight","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#characteristics.typeLiteral1296:outerHeight.","js_sym":"#outerHeight","type_pretty":"GleanQuantity","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#7301"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#characteristics.typeLiteral1296:outerWidth.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#characteristics.typeLiteral1296:outerWidth.","pretty":"GleanImpl::characteristics::typeLiteral1296::outerWidth","meta":{"structured":1,"pretty":"GleanImpl::characteristics::typeLiteral1296::outerWidth","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#characteristics.typeLiteral1296:outerWidth.","js_sym":"#outerWidth","type_pretty":"GleanQuantity","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#7302"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:activateResponsiveDesign.GleanEventWithExtras:typeLiteral606:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:activateResponsiveDesign.GleanEventWithExtras:typeLiteral606:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::activateResponsiveDesign::GleanEventWithExtras::typeLiteral606::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::activateResponsiveDesign::GleanEventWithExtras::typeLiteral606::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:activateResponsiveDesign.GleanEventWithExtras:typeLiteral606:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1903"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:activateSplitConsole.GleanEventWithExtras:typeLiteral607:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:activateSplitConsole.GleanEventWithExtras:typeLiteral607:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::activateSplitConsole::GleanEventWithExtras::typeLiteral607::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::activateSplitConsole::GleanEventWithExtras::typeLiteral607::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:activateSplitConsole.GleanEventWithExtras:typeLiteral607:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1904"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:closeAdbgAboutdebugging.GleanEventWithExtras:typeLiteral610:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:closeAdbgAboutdebugging.GleanEventWithExtras:typeLiteral610:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::closeAdbgAboutdebugging::GleanEventWithExtras::typeLiteral610::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::closeAdbgAboutdebugging::GleanEventWithExtras::typeLiteral610::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:closeAdbgAboutdebugging.GleanEventWithExtras:typeLiteral610:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1907"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:closeTools.GleanEventWithExtras:typeLiteral611:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:closeTools.GleanEventWithExtras:typeLiteral611:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::closeTools::GleanEventWithExtras::typeLiteral611::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::closeTools::GleanEventWithExtras::typeLiteral611::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:closeTools.GleanEventWithExtras:typeLiteral611:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1908"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:deactivateResponsiveDesign.GleanEventWithExtras:typeLiteral614:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:deactivateResponsiveDesign.GleanEventWithExtras:typeLiteral614:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::deactivateResponsiveDesign::GleanEventWithExtras::typeLiteral614::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::deactivateResponsiveDesign::GleanEventWithExtras::typeLiteral614::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:deactivateResponsiveDesign.GleanEventWithExtras:typeLiteral614:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1911"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:deactivateSplitConsole.GleanEventWithExtras:typeLiteral615:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:deactivateSplitConsole.GleanEventWithExtras:typeLiteral615:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::deactivateSplitConsole::GleanEventWithExtras::typeLiteral615::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::deactivateSplitConsole::GleanEventWithExtras::typeLiteral615::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:deactivateSplitConsole.GleanEventWithExtras:typeLiteral615:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1912"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterAccessibility.GleanEventWithExtras:typeLiteral621:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterAccessibility.GleanEventWithExtras:typeLiteral621:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterAccessibility::GleanEventWithExtras::typeLiteral621::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterAccessibility::GleanEventWithExtras::typeLiteral621::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterAccessibility.GleanEventWithExtras:typeLiteral621:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1918"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterApplication.GleanEventWithExtras:typeLiteral622:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterApplication.GleanEventWithExtras:typeLiteral622:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterApplication::GleanEventWithExtras::typeLiteral622::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterApplication::GleanEventWithExtras::typeLiteral622::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterApplication.GleanEventWithExtras:typeLiteral622:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1919"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterDom.GleanEventWithExtras:typeLiteral623:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterDom.GleanEventWithExtras:typeLiteral623:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterDom::GleanEventWithExtras::typeLiteral623::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterDom::GleanEventWithExtras::typeLiteral623::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterDom.GleanEventWithExtras:typeLiteral623:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1920"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterFakeTool4242.GleanEventWithExtras:typeLiteral624:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterFakeTool4242.GleanEventWithExtras:typeLiteral624:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterFakeTool4242::GleanEventWithExtras::typeLiteral624::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterFakeTool4242::GleanEventWithExtras::typeLiteral624::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterFakeTool4242.GleanEventWithExtras:typeLiteral624:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1921"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterInspector.GleanEventWithExtras:typeLiteral625:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterInspector.GleanEventWithExtras:typeLiteral625:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterInspector::GleanEventWithExtras::typeLiteral625::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterInspector::GleanEventWithExtras::typeLiteral625::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterInspector.GleanEventWithExtras:typeLiteral625:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1922"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterJsdebugger.GleanEventWithExtras:typeLiteral626:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterJsdebugger.GleanEventWithExtras:typeLiteral626:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterJsdebugger::GleanEventWithExtras::typeLiteral626::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterJsdebugger::GleanEventWithExtras::typeLiteral626::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterJsdebugger.GleanEventWithExtras:typeLiteral626:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1923"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterMemory.GleanEventWithExtras:typeLiteral627:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterMemory.GleanEventWithExtras:typeLiteral627:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterMemory::GleanEventWithExtras::typeLiteral627::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterMemory::GleanEventWithExtras::typeLiteral627::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterMemory.GleanEventWithExtras:typeLiteral627:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1924"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterNetmonitor.GleanEventWithExtras:typeLiteral628:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterNetmonitor.GleanEventWithExtras:typeLiteral628:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterNetmonitor::GleanEventWithExtras::typeLiteral628::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterNetmonitor::GleanEventWithExtras::typeLiteral628::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterNetmonitor.GleanEventWithExtras:typeLiteral628:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1925"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterOptions.GleanEventWithExtras:typeLiteral629:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterOptions.GleanEventWithExtras:typeLiteral629:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterOptions::GleanEventWithExtras::typeLiteral629::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterOptions::GleanEventWithExtras::typeLiteral629::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterOptions.GleanEventWithExtras:typeLiteral629:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1926"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterOther.GleanEventWithExtras:typeLiteral630:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterOther.GleanEventWithExtras:typeLiteral630:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterOther::GleanEventWithExtras::typeLiteral630::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterOther::GleanEventWithExtras::typeLiteral630::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterOther.GleanEventWithExtras:typeLiteral630:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1927"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterPerformance.GleanEventWithExtras:typeLiteral631:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterPerformance.GleanEventWithExtras:typeLiteral631:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterPerformance::GleanEventWithExtras::typeLiteral631::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterPerformance::GleanEventWithExtras::typeLiteral631::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterPerformance.GleanEventWithExtras:typeLiteral631:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1928"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterStorage.GleanEventWithExtras:typeLiteral632:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterStorage.GleanEventWithExtras:typeLiteral632:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterStorage::GleanEventWithExtras::typeLiteral632::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterStorage::GleanEventWithExtras::typeLiteral632::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterStorage.GleanEventWithExtras:typeLiteral632:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1929"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterStyleeditor.GleanEventWithExtras:typeLiteral633:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterStyleeditor.GleanEventWithExtras:typeLiteral633:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterStyleeditor::GleanEventWithExtras::typeLiteral633::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterStyleeditor::GleanEventWithExtras::typeLiteral633::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterStyleeditor.GleanEventWithExtras:typeLiteral633:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1930"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestBlankPanel.GleanEventWithExtras:typeLiteral634:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestBlankPanel.GleanEventWithExtras:typeLiteral634:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTestBlankPanel::GleanEventWithExtras::typeLiteral634::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTestBlankPanel::GleanEventWithExtras::typeLiteral634::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestBlankPanel.GleanEventWithExtras:typeLiteral634:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1931"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestTool.GleanEventWithExtras:typeLiteral635:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestTool.GleanEventWithExtras:typeLiteral635:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTestTool::GleanEventWithExtras::typeLiteral635::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTestTool::GleanEventWithExtras::typeLiteral635::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestTool.GleanEventWithExtras:typeLiteral635:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1932"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestTool1072208.GleanEventWithExtras:typeLiteral636:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestTool1072208.GleanEventWithExtras:typeLiteral636:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTestTool1072208::GleanEventWithExtras::typeLiteral636::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTestTool1072208::GleanEventWithExtras::typeLiteral636::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTestTool1072208.GleanEventWithExtras:typeLiteral636:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1933"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTesttool1.GleanEventWithExtras:typeLiteral637:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTesttool1.GleanEventWithExtras:typeLiteral637:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTesttool1::GleanEventWithExtras::typeLiteral637::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTesttool1::GleanEventWithExtras::typeLiteral637::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTesttool1.GleanEventWithExtras:typeLiteral637:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1934"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTesttool2.GleanEventWithExtras:typeLiteral638:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTesttool2.GleanEventWithExtras:typeLiteral638:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTesttool2::GleanEventWithExtras::typeLiteral638::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterTesttool2::GleanEventWithExtras::typeLiteral638::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterTesttool2.GleanEventWithExtras:typeLiteral638:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1935"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterWebconsole.GleanEventWithExtras:typeLiteral639:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterWebconsole.GleanEventWithExtras:typeLiteral639:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterWebconsole::GleanEventWithExtras::typeLiteral639::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterWebconsole::GleanEventWithExtras::typeLiteral639::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterWebconsole.GleanEventWithExtras:typeLiteral639:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1936"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterWhatsnew.GleanEventWithExtras:typeLiteral640:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterWhatsnew.GleanEventWithExtras:typeLiteral640:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterWhatsnew::GleanEventWithExtras::typeLiteral640::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::enterWhatsnew::GleanEventWithExtras::typeLiteral640::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:enterWhatsnew.GleanEventWithExtras:typeLiteral640:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1937"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitAccessibility.GleanEventWithExtras:typeLiteral642:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitAccessibility.GleanEventWithExtras:typeLiteral642:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitAccessibility::GleanEventWithExtras::typeLiteral642::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitAccessibility::GleanEventWithExtras::typeLiteral642::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitAccessibility.GleanEventWithExtras:typeLiteral642:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1939"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitApplication.GleanEventWithExtras:typeLiteral643:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitApplication.GleanEventWithExtras:typeLiteral643:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitApplication::GleanEventWithExtras::typeLiteral643::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitApplication::GleanEventWithExtras::typeLiteral643::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitApplication.GleanEventWithExtras:typeLiteral643:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1940"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitDom.GleanEventWithExtras:typeLiteral644:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitDom.GleanEventWithExtras:typeLiteral644:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitDom::GleanEventWithExtras::typeLiteral644::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitDom::GleanEventWithExtras::typeLiteral644::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitDom.GleanEventWithExtras:typeLiteral644:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1941"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitFakeTool4242.GleanEventWithExtras:typeLiteral645:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitFakeTool4242.GleanEventWithExtras:typeLiteral645:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitFakeTool4242::GleanEventWithExtras::typeLiteral645::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitFakeTool4242::GleanEventWithExtras::typeLiteral645::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitFakeTool4242.GleanEventWithExtras:typeLiteral645:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1942"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitInspector.GleanEventWithExtras:typeLiteral646:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitInspector.GleanEventWithExtras:typeLiteral646:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitInspector::GleanEventWithExtras::typeLiteral646::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitInspector::GleanEventWithExtras::typeLiteral646::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitInspector.GleanEventWithExtras:typeLiteral646:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1943"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitJsdebugger.GleanEventWithExtras:typeLiteral647:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitJsdebugger.GleanEventWithExtras:typeLiteral647:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitJsdebugger::GleanEventWithExtras::typeLiteral647::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitJsdebugger::GleanEventWithExtras::typeLiteral647::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitJsdebugger.GleanEventWithExtras:typeLiteral647:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1944"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitMemory.GleanEventWithExtras:typeLiteral648:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitMemory.GleanEventWithExtras:typeLiteral648:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitMemory::GleanEventWithExtras::typeLiteral648::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitMemory::GleanEventWithExtras::typeLiteral648::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitMemory.GleanEventWithExtras:typeLiteral648:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1945"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitNetmonitor.GleanEventWithExtras:typeLiteral649:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitNetmonitor.GleanEventWithExtras:typeLiteral649:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitNetmonitor::GleanEventWithExtras::typeLiteral649::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitNetmonitor::GleanEventWithExtras::typeLiteral649::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitNetmonitor.GleanEventWithExtras:typeLiteral649:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1946"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitOptions.GleanEventWithExtras:typeLiteral650:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitOptions.GleanEventWithExtras:typeLiteral650:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitOptions::GleanEventWithExtras::typeLiteral650::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitOptions::GleanEventWithExtras::typeLiteral650::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitOptions.GleanEventWithExtras:typeLiteral650:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1947"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitOther.GleanEventWithExtras:typeLiteral651:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitOther.GleanEventWithExtras:typeLiteral651:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitOther::GleanEventWithExtras::typeLiteral651::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitOther::GleanEventWithExtras::typeLiteral651::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitOther.GleanEventWithExtras:typeLiteral651:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1948"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitPerformance.GleanEventWithExtras:typeLiteral652:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitPerformance.GleanEventWithExtras:typeLiteral652:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitPerformance::GleanEventWithExtras::typeLiteral652::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitPerformance::GleanEventWithExtras::typeLiteral652::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitPerformance.GleanEventWithExtras:typeLiteral652:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1949"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitStorage.GleanEventWithExtras:typeLiteral653:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitStorage.GleanEventWithExtras:typeLiteral653:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitStorage::GleanEventWithExtras::typeLiteral653::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitStorage::GleanEventWithExtras::typeLiteral653::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitStorage.GleanEventWithExtras:typeLiteral653:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1950"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitStyleeditor.GleanEventWithExtras:typeLiteral654:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitStyleeditor.GleanEventWithExtras:typeLiteral654:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitStyleeditor::GleanEventWithExtras::typeLiteral654::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitStyleeditor::GleanEventWithExtras::typeLiteral654::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitStyleeditor.GleanEventWithExtras:typeLiteral654:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1951"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestBlankPanel.GleanEventWithExtras:typeLiteral655:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestBlankPanel.GleanEventWithExtras:typeLiteral655:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTestBlankPanel::GleanEventWithExtras::typeLiteral655::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTestBlankPanel::GleanEventWithExtras::typeLiteral655::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestBlankPanel.GleanEventWithExtras:typeLiteral655:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1952"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestTool.GleanEventWithExtras:typeLiteral656:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestTool.GleanEventWithExtras:typeLiteral656:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTestTool::GleanEventWithExtras::typeLiteral656::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTestTool::GleanEventWithExtras::typeLiteral656::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestTool.GleanEventWithExtras:typeLiteral656:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1953"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestTool1072208.GleanEventWithExtras:typeLiteral657:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestTool1072208.GleanEventWithExtras:typeLiteral657:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTestTool1072208::GleanEventWithExtras::typeLiteral657::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTestTool1072208::GleanEventWithExtras::typeLiteral657::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTestTool1072208.GleanEventWithExtras:typeLiteral657:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1954"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTesttool1.GleanEventWithExtras:typeLiteral658:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTesttool1.GleanEventWithExtras:typeLiteral658:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTesttool1::GleanEventWithExtras::typeLiteral658::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTesttool1::GleanEventWithExtras::typeLiteral658::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTesttool1.GleanEventWithExtras:typeLiteral658:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1955"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTesttool2.GleanEventWithExtras:typeLiteral659:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTesttool2.GleanEventWithExtras:typeLiteral659:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTesttool2::GleanEventWithExtras::typeLiteral659::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitTesttool2::GleanEventWithExtras::typeLiteral659::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitTesttool2.GleanEventWithExtras:typeLiteral659:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1956"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitWebconsole.GleanEventWithExtras:typeLiteral660:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitWebconsole.GleanEventWithExtras:typeLiteral660:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitWebconsole::GleanEventWithExtras::typeLiteral660::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitWebconsole::GleanEventWithExtras::typeLiteral660::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitWebconsole.GleanEventWithExtras:typeLiteral660:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1957"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitWhatsnew.GleanEventWithExtras:typeLiteral661:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitWhatsnew.GleanEventWithExtras:typeLiteral661:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitWhatsnew::GleanEventWithExtras::typeLiteral661::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::exitWhatsnew::GleanEventWithExtras::typeLiteral661::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:exitWhatsnew.GleanEventWithExtras:typeLiteral661:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1958"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:openAdbgAboutdebugging.GleanEventWithExtras:typeLiteral668:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:openAdbgAboutdebugging.GleanEventWithExtras:typeLiteral668:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::openAdbgAboutdebugging::GleanEventWithExtras::typeLiteral668::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::openAdbgAboutdebugging::GleanEventWithExtras::typeLiteral668::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:openAdbgAboutdebugging.GleanEventWithExtras:typeLiteral668:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1965"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:openTools.GleanEventWithExtras:typeLiteral669:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:openTools.GleanEventWithExtras:typeLiteral669:width.","pretty":"GleanImpl::devtoolsMain::typeLiteral605::openTools::GleanEventWithExtras::typeLiteral669::width","meta":{"structured":1,"pretty":"GleanImpl::devtoolsMain::typeLiteral605::openTools::GleanEventWithExtras::typeLiteral669::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#devtoolsMain.typeLiteral605:openTools.GleanEventWithExtras:typeLiteral669:width.","js_sym":"#width","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1966"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#firefoxviewNext.typeLiteral148:openTabTabs.GleanEventWithExtras:typeLiteral157:window.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#firefoxviewNext.typeLiteral148:openTabTabs.GleanEventWithExtras:typeLiteral157:window.","pretty":"GleanImpl::firefoxviewNext::typeLiteral148::openTabTabs::GleanEventWithExtras::typeLiteral157::window","meta":{"structured":1,"pretty":"GleanImpl::firefoxviewNext::typeLiteral148::openTabTabs::GleanEventWithExtras::typeLiteral157::window","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#firefoxviewNext.typeLiteral148:openTabTabs.GleanEventWithExtras:typeLiteral157:window.","js_sym":"#window","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#570"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#genaiLinkpreview.typeLiteral188:start.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#genaiLinkpreview.typeLiteral188:start.","pretty":"GleanImpl::genaiLinkpreview::typeLiteral188::start","meta":{"structured":1,"pretty":"GleanImpl::genaiLinkpreview::typeLiteral188::start","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#genaiLinkpreview.typeLiteral188:start.","js_sym":"#start","type_pretty":"string | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#629"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:clearedPassportForm.GleanEventWithExtras:typeLiteral1066:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:clearedPassportForm.GleanEventWithExtras:typeLiteral1066:name.","pretty":"GleanImpl::passport::typeLiteral1064::clearedPassportForm::GleanEventWithExtras::typeLiteral1066::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::clearedPassportForm::GleanEventWithExtras::typeLiteral1066::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:clearedPassportForm.GleanEventWithExtras:typeLiteral1066:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6301"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:detectedPassportForm.GleanEventWithExtras:typeLiteral1067:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:detectedPassportForm.GleanEventWithExtras:typeLiteral1067:name.","pretty":"GleanImpl::passport::typeLiteral1064::detectedPassportForm::GleanEventWithExtras::typeLiteral1067::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::detectedPassportForm::GleanEventWithExtras::typeLiteral1067::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:detectedPassportForm.GleanEventWithExtras:typeLiteral1067:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6303"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledModifiedPassportForm.GleanEventWithExtras:typeLiteral1069:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledModifiedPassportForm.GleanEventWithExtras:typeLiteral1069:name.","pretty":"GleanImpl::passport::typeLiteral1064::filledModifiedPassportForm::GleanEventWithExtras::typeLiteral1069::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::filledModifiedPassportForm::GleanEventWithExtras::typeLiteral1069::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledModifiedPassportForm.GleanEventWithExtras:typeLiteral1069:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6306"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledOnFieldsUpdatePassportForm.GleanEventWithExtras:typeLiteral1070:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledOnFieldsUpdatePassportForm.GleanEventWithExtras:typeLiteral1070:name.","pretty":"GleanImpl::passport::typeLiteral1064::filledOnFieldsUpdatePassportForm::GleanEventWithExtras::typeLiteral1070::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::filledOnFieldsUpdatePassportForm::GleanEventWithExtras::typeLiteral1070::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledOnFieldsUpdatePassportForm.GleanEventWithExtras:typeLiteral1070:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6307"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledPassportForm.GleanEventWithExtras:typeLiteral1071:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledPassportForm.GleanEventWithExtras:typeLiteral1071:name.","pretty":"GleanImpl::passport::typeLiteral1064::filledPassportForm::GleanEventWithExtras::typeLiteral1071::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::filledPassportForm::GleanEventWithExtras::typeLiteral1071::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:filledPassportForm.GleanEventWithExtras:typeLiteral1071:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6308"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:popupShownPassportForm.GleanEventWithExtras:typeLiteral1072:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:popupShownPassportForm.GleanEventWithExtras:typeLiteral1072:name.","pretty":"GleanImpl::passport::typeLiteral1064::popupShownPassportForm::GleanEventWithExtras::typeLiteral1072::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::popupShownPassportForm::GleanEventWithExtras::typeLiteral1072::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:popupShownPassportForm.GleanEventWithExtras:typeLiteral1072:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6309"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:submittedPassportForm.GleanEventWithExtras:typeLiteral1075:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:submittedPassportForm.GleanEventWithExtras:typeLiteral1075:name.","pretty":"GleanImpl::passport::typeLiteral1064::submittedPassportForm::GleanEventWithExtras::typeLiteral1075::name","meta":{"structured":1,"pretty":"GleanImpl::passport::typeLiteral1064::submittedPassportForm::GleanEventWithExtras::typeLiteral1075::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#passport.typeLiteral1064:submittedPassportForm.GleanEventWithExtras:typeLiteral1075:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6314"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pdfjsImageAltText.typeLiteral1239:info.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pdfjsImageAltText.typeLiteral1239:info.","pretty":"GleanImpl::pdfjsImageAltText::typeLiteral1239::info","meta":{"structured":1,"pretty":"GleanImpl::pdfjsImageAltText::typeLiteral1239::info","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pdfjsImageAltText.typeLiteral1239:info.","js_sym":"#info","type_pretty":"string | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6731"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pictureinpicture.typeLiteral1257:createPlayer.GleanEventWithExtras:typeLiteral1258:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pictureinpicture.typeLiteral1257:createPlayer.GleanEventWithExtras:typeLiteral1258:width.","pretty":"GleanImpl::pictureinpicture::typeLiteral1257::createPlayer::GleanEventWithExtras::typeLiteral1258::width","meta":{"structured":1,"pretty":"GleanImpl::pictureinpicture::typeLiteral1257::createPlayer::GleanEventWithExtras::typeLiteral1258::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pictureinpicture.typeLiteral1257:createPlayer.GleanEventWithExtras:typeLiteral1258:width.","js_sym":"#width","type_pretty":"string | number | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6773"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pictureinpicture.typeLiteral1257:resizePlayer.GleanEventWithExtras:typeLiteral1266:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pictureinpicture.typeLiteral1257:resizePlayer.GleanEventWithExtras:typeLiteral1266:width.","pretty":"GleanImpl::pictureinpicture::typeLiteral1257::resizePlayer::GleanEventWithExtras::typeLiteral1266::width","meta":{"structured":1,"pretty":"GleanImpl::pictureinpicture::typeLiteral1257::resizePlayer::GleanEventWithExtras::typeLiteral1266::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pictureinpicture.typeLiteral1257:resizePlayer.GleanEventWithExtras:typeLiteral1266:width.","js_sym":"#width","type_pretty":"string | number | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6784"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#profilesExisting.typeLiteral378:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#profilesExisting.typeLiteral378:name.","pretty":"GleanImpl::profilesExisting::typeLiteral378::name","meta":{"structured":1,"pretty":"GleanImpl::profilesExisting::typeLiteral378::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#profilesExisting.typeLiteral378:name.","js_sym":"#name","type_pretty":"GleanEventNoExtras","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1104"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#profilesNew.typeLiteral384:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#profilesNew.typeLiteral384:name.","pretty":"GleanImpl::profilesNew::typeLiteral384::name","meta":{"structured":1,"pretty":"GleanImpl::profilesNew::typeLiteral384::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#profilesNew.typeLiteral384:name.","js_sym":"#name","type_pretty":"GleanEventNoExtras","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1116"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#security.typeLiteral226:shadowedHtmlDocumentPropertyAccess.GleanEventWithExtras:typeLiteral228:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#security.typeLiteral226:shadowedHtmlDocumentPropertyAccess.GleanEventWithExtras:typeLiteral228:name.","pretty":"GleanImpl::security::typeLiteral226::shadowedHtmlDocumentPropertyAccess::GleanEventWithExtras::typeLiteral228::name","meta":{"structured":1,"pretty":"GleanImpl::security::typeLiteral226::shadowedHtmlDocumentPropertyAccess::GleanEventWithExtras::typeLiteral228::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#security.typeLiteral226:shadowedHtmlDocumentPropertyAccess.GleanEventWithExtras:typeLiteral228:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#758"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebar.typeLiteral471:keyboardShortcut.GleanEventWithExtras:typeLiteral476:panel.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebar.typeLiteral471:keyboardShortcut.GleanEventWithExtras:typeLiteral476:panel.","pretty":"GleanImpl::sidebar::typeLiteral471::keyboardShortcut::GleanEventWithExtras::typeLiteral476::panel","meta":{"structured":1,"pretty":"GleanImpl::sidebar::typeLiteral471::keyboardShortcut::GleanEventWithExtras::typeLiteral476::panel","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebar.typeLiteral471:keyboardShortcut.GleanEventWithExtras:typeLiteral476:panel.","js_sym":"#panel","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1434"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebar.typeLiteral471:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebar.typeLiteral471:width.","pretty":"GleanImpl::sidebar::typeLiteral471::width","meta":{"structured":1,"pretty":"GleanImpl::sidebar::typeLiteral471::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebar.typeLiteral471:width.","js_sym":"#width","type_pretty":"GleanQuantity","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1443"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#smartWindow.typeLiteral15:clientError.GleanEventWithExtras:typeLiteral37:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#smartWindow.typeLiteral15:clientError.GleanEventWithExtras:typeLiteral37:name.","pretty":"GleanImpl::smartWindow::typeLiteral15::clientError::GleanEventWithExtras::typeLiteral37::name","meta":{"structured":1,"pretty":"GleanImpl::smartWindow::typeLiteral15::clientError::GleanEventWithExtras::typeLiteral37::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#smartWindow.typeLiteral15:clientError.GleanEventWithExtras:typeLiteral37:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#280"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:end.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:end.","pretty":"GleanImpl::splitview::typeLiteral503::end","meta":{"structured":1,"pretty":"GleanImpl::splitview::typeLiteral503::end","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:end.","js_sym":"#end","type_pretty":"string | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1495"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:resize.GleanEventWithExtras:typeLiteral505:width.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:resize.GleanEventWithExtras:typeLiteral505:width.","pretty":"GleanImpl::splitview::typeLiteral503::resize::GleanEventWithExtras::typeLiteral505::width","meta":{"structured":1,"pretty":"GleanImpl::splitview::typeLiteral503::resize::GleanEventWithExtras::typeLiteral505::width","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:resize.GleanEventWithExtras:typeLiteral505:width.","js_sym":"#width","type_pretty":"string | number | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1496"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:start.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:start.","pretty":"GleanImpl::splitview::typeLiteral503::start","meta":{"structured":1,"pretty":"GleanImpl::splitview::typeLiteral503::start","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#splitview.typeLiteral503:start.","js_sym":"#start","type_pretty":"string | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1498"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#systemCpu.typeLiteral1455:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#systemCpu.typeLiteral1455:name.","pretty":"GleanImpl::systemCpu::typeLiteral1455::name","meta":{"structured":1,"pretty":"GleanImpl::systemCpu::typeLiteral1455::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#systemCpu.typeLiteral1455:name.","js_sym":"#name","type_pretty":"GleanString","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#8066"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#systemOs.typeLiteral1456:name.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#systemOs.typeLiteral1456:name.","pretty":"GleanImpl::systemOs::typeLiteral1456::name","meta":{"structured":1,"pretty":"GleanImpl::systemOs::typeLiteral1456::name","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#systemOs.typeLiteral1456:name.","js_sym":"#name","type_pretty":"GleanString","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#8078"}},"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#focus.":{"sym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#focus.","pretty":"JSServices::focus","meta":{"structured":1,"pretty":"JSServices::focus","sym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#focus.","js_sym":"#focus","type_pretty":"nsIFocusManager","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.services.d.ts#26"}},"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#prefs.":{"sym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#prefs.","pretty":"JSServices::prefs","meta":{"structured":1,"pretty":"JSServices::prefs","sym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#prefs.","js_sym":"#prefs","type_pretty":"nsIPrefBranch & nsIPrefService","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.services.d.ts#39"}},"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#scriptloader.":{"sym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#scriptloader.","pretty":"JSServices::scriptloader","meta":{"structured":1,"pretty":"JSServices::scriptloader","sym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#scriptloader.","js_sym":"#scriptloader","type_pretty":"mozIJSSubScriptLoader","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.services.d.ts/JSServices#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.services.d.ts#45"}},"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsIInstalledApplication#name.":{"sym":"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsIInstalledApplication#name.","pretty":"nsIInstalledApplication::name","meta":{"structured":1,"pretty":"nsIInstalledApplication::name","sym":"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsIInstalledApplication#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsIInstalledApplication#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.win32.d.ts#12"}},"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsITaskbarPreviewController#width.":{"sym":"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsITaskbarPreviewController#width.","pretty":"nsITaskbarPreviewController::width","meta":{"structured":1,"pretty":"nsITaskbarPreviewController::width","sym":"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsITaskbarPreviewController#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.win32.d.ts/global/nsITaskbarPreviewController#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.win32.d.ts#216"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/imgIContainer#width.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/imgIContainer#width.","pretty":"imgIContainer::width","meta":{"structured":1,"pretty":"imgIContainer::width","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/imgIContainer#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/imgIContainer#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_imgIContainer_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#8755"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/mozIJSSubScriptLoader#loadSubScript().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/mozIJSSubScriptLoader#loadSubScript().","pretty":"mozIJSSubScriptLoader::loadSubScript","meta":{"structured":1,"pretty":"mozIJSSubScriptLoader::loadSubScript","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/mozIJSSubScriptLoader#loadSubScript().","js_sym":"#loadSubScript","type_pretty":"any) => any","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/mozIJSSubScriptLoader#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_mozIJSSubScriptLoader_loadSubScript"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#25917"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#document.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#document.","pretty":"nsIAccessible::document","meta":{"structured":1,"pretty":"nsIAccessible::document","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#document.","js_sym":"#document","type_pretty":"nsIAccessibleDocument","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAccessible_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#305"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#name.","pretty":"nsIAccessible::name","meta":{"structured":1,"pretty":"nsIAccessible::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessible#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAccessible_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#311"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleDocument#window.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleDocument#window.","pretty":"nsIAccessibleDocument::window","meta":{"structured":1,"pretty":"nsIAccessibleDocument::window","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleDocument#window.","js_sym":"#window","type_pretty":"mozIDOMWindowProxy","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleDocument#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAccessibleDocument_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#432"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleTextChangeEvent#start.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleTextChangeEvent#start.","pretty":"nsIAccessibleTextChangeEvent::start","meta":{"structured":1,"pretty":"nsIAccessibleTextChangeEvent::start","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleTextChangeEvent#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAccessibleTextChangeEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAccessibleTextChangeEvent_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#1334"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAlertNotification#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAlertNotification#name.","pretty":"nsIAlertNotification::name","meta":{"structured":1,"pretty":"nsIAlertNotification::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAlertNotification#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAlertNotification#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAlertNotification_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#1478"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownBlocker#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownBlocker#name.","pretty":"nsIAsyncShutdownBlocker::name","meta":{"structured":1,"pretty":"nsIAsyncShutdownBlocker::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownBlocker#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownBlocker#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAsyncShutdownBlocker_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#19528"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownClient#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownClient#name.","pretty":"nsIAsyncShutdownClient::name","meta":{"structured":1,"pretty":"nsIAsyncShutdownClient::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownClient#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAsyncShutdownClient#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAsyncShutdownClient_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#19538"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAudioDeviceInfo#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAudioDeviceInfo#name.","pretty":"nsIAudioDeviceInfo::name","meta":{"structured":1,"pretty":"nsIAudioDeviceInfo::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAudioDeviceInfo#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIAudioDeviceInfo#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIAudioDeviceInfo_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#5786"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#info.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#info.","pretty":"nsIConsoleMessage::info","meta":{"structured":1,"pretty":"nsIConsoleMessage::info","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#info.","js_sym":"#info","type_pretty":"1 | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#","slotOwner":{"slotKind":"const","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIConsoleMessage_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#23562"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentAnalysisRule#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentAnalysisRule#name.","pretty":"nsIContentAnalysisRule::name","meta":{"structured":1,"pretty":"nsIContentAnalysisRule::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentAnalysisRule#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentAnalysisRule#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIContentAnalysisRule_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#20063"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPermissionRequest#window.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPermissionRequest#window.","pretty":"nsIContentPermissionRequest::window","meta":{"structured":1,"pretty":"nsIContentPermissionRequest::window","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPermissionRequest#window.","js_sym":"#window","type_pretty":"mozIDOMWindow","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPermissionRequest#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIContentPermissionRequest_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#4243"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPref#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPref#name.","pretty":"nsIContentPref::name","meta":{"structured":1,"pretty":"nsIContentPref::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPref#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIContentPref#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIContentPref_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#4347"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICookie#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICookie#name.","pretty":"nsICookie::name","meta":{"structured":1,"pretty":"nsICookie::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICookie#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICookie#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsICookie_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#13907"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocShellTreeItem#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocShellTreeItem#name.","pretty":"nsIDocShellTreeItem::name","meta":{"structured":1,"pretty":"nsIDocShellTreeItem::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocShellTreeItem#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocShellTreeItem#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIDocShellTreeItem_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#3011"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDroppedLinkItem#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDroppedLinkItem#name.","pretty":"nsIDroppedLinkItem::name","meta":{"structured":1,"pretty":"nsIDroppedLinkItem::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDroppedLinkItem#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDroppedLinkItem#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIDroppedLinkItem_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#3626"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIEditor#document.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIEditor#document.","pretty":"nsIEditor::document","meta":{"structured":1,"pretty":"nsIEditor::document","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIEditor#document.","js_sym":"#document","type_pretty":"Document","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIEditor#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIEditor_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#7732"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIFavicon#width.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIFavicon#width.","pretty":"nsIFavicon::width","meta":{"structured":1,"pretty":"nsIFavicon::width","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIFavicon#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIFavicon#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIFavicon_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#17356"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHandlerApp#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHandlerApp#name.","pretty":"nsIHandlerApp::name","meta":{"structured":1,"pretty":"nsIHandlerApp::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHandlerApp#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHandlerApp#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIHandlerApp_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#10059"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServer#start().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServer#start().","pretty":"nsIHttpServer::start","meta":{"structured":1,"pretty":"nsIHttpServer::start","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServer#start().","js_sym":"#start","type_pretty":"number) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServer#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIHttpServer_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#19115"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIIncrementalDownload#start().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIIncrementalDownload#start().","pretty":"nsIIncrementalDownload::start","meta":{"structured":1,"pretty":"nsIIncrementalDownload::start","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIIncrementalDownload#start().","js_sym":"#start","type_pretty":"nsISupports) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIIncrementalDownload#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIIncrementalDownload_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#11207"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINamed#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINamed#name.","pretty":"nsINamed::name","meta":{"structured":1,"pretty":"nsINamed::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINamed#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINamed#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsINamed_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#25680"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeAppSupport#start().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeAppSupport#start().","pretty":"nsINativeAppSupport::start","meta":{"structured":1,"pretty":"nsINativeAppSupport::start","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeAppSupport#start().","js_sym":"#start","type_pretty":"(method) start() => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeAppSupport#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsINativeAppSupport_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#26486"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingPortal#start().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingPortal#start().","pretty":"nsINativeMessagingPortal::start","meta":{"structured":1,"pretty":"nsINativeMessagingPortal::start","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingPortal#start().","js_sym":"#start","type_pretty":"string) => Promise","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingPortal#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsINativeMessagingPortal_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#22154"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingProxy#start().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingProxy#start().","pretty":"nsINativeMessagingProxy::start","meta":{"structured":1,"pretty":"nsINativeMessagingProxy::start","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingProxy#start().","js_sym":"#start","type_pretty":"string) => Promise","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINativeMessagingProxy#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsINativeMessagingProxy_start"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#22170"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINotificationActionStorageEntry#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINotificationActionStorageEntry#name.","pretty":"nsINotificationActionStorageEntry::name","meta":{"structured":1,"pretty":"nsINotificationActionStorageEntry::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINotificationActionStorageEntry#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsINotificationActionStorageEntry#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsINotificationActionStorageEntry_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#5916"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Module#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Module#name.","pretty":"nsIPKCS11Module::name","meta":{"structured":1,"pretty":"nsIPKCS11Module::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Module#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Module#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPKCS11Module_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#16507"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Slot#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Slot#name.","pretty":"nsIPKCS11Slot::name","meta":{"structured":1,"pretty":"nsIPKCS11Slot::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Slot#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPKCS11Slot#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPKCS11Slot_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#16544"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#name.","pretty":"nsIPaper::name","meta":{"structured":1,"pretty":"nsIPaper::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPaper_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#22845"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#width.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#width.","pretty":"nsIPaper::width","meta":{"structured":1,"pretty":"nsIPaper::width","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPaper#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPaper_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#22847"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrefBranch#getIntPref().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrefBranch#getIntPref().","pretty":"nsIPrefBranch::getIntPref","meta":{"structured":1,"pretty":"nsIPrefBranch::getIntPref","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrefBranch#getIntPref().","js_sym":"#getIntPref","type_pretty":"number | undefined) => number","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrefBranch#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPrefBranch_getIntPref"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#17901"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrinter#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrinter#name.","pretty":"nsIPrinter::name","meta":{"structured":1,"pretty":"nsIPrinter::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrinter#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPrinter#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPrinter_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#23118"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperty#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperty#name.","pretty":"nsIProperty::name","meta":{"structured":1,"pretty":"nsIProperty::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperty#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperty#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIProperty_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#24183"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIQueryContentEventResult#width.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIQueryContentEventResult#width.","pretty":"nsIQueryContentEventResult::width","meta":{"structured":1,"pretty":"nsIQueryContentEventResult::width","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIQueryContentEventResult#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIQueryContentEventResult#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIQueryContentEventResult_width"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#5147"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIRequest#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIRequest#name.","pretty":"nsIRequest::name","meta":{"structured":1,"pretty":"nsIRequest::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIRequest#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIRequest#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIRequest_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#12672"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISHEntry#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISHEntry#name.","pretty":"nsISHEntry::name","meta":{"structured":1,"pretty":"nsISHEntry::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISHEntry#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISHEntry#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsISHEntry_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#18323"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISVCBRecord#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISVCBRecord#name.","pretty":"nsISVCBRecord::name","meta":{"structured":1,"pretty":"nsISVCBRecord::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISVCBRecord#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsISVCBRecord#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsISVCBRecord_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#14266"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIServerTiming#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIServerTiming#name.","pretty":"nsIServerTiming::name","meta":{"structured":1,"pretty":"nsIServerTiming::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIServerTiming#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIServerTiming#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIServerTiming_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#13196"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIStackFrame#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIStackFrame#name.","pretty":"nsIStackFrame::name","meta":{"structured":1,"pretty":"nsIStackFrame::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIStackFrame#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIStackFrame#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIStackFrame_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#23703"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsITimer#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsITimer#name.","pretty":"nsITimer::name","meta":{"structured":1,"pretty":"nsITimer::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsITimer#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsITimer#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsITimer_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#25891"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIToolkitProfile#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIToolkitProfile#name.","pretty":"nsIToolkitProfile::name","meta":{"structured":1,"pretty":"nsIToolkitProfile::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIToolkitProfile#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIToolkitProfile#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIToolkitProfile_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#20338"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUpdate#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUpdate#name.","pretty":"nsIUpdate::name","meta":{"structured":1,"pretty":"nsIUpdate::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUpdate#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUpdate#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIUpdate_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#20586"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierFeature#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierFeature#name.","pretty":"nsIUrlClassifierFeature::name","meta":{"structured":1,"pretty":"nsIUrlClassifierFeature::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierFeature#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierFeature#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIUrlClassifierFeature_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#21322"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWebNavigation#document.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWebNavigation#document.","pretty":"nsIWebNavigation::document","meta":{"structured":1,"pretty":"nsIWebNavigation::document","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWebNavigation#document.","js_sym":"#document","type_pretty":"Document","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWebNavigation#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIWebNavigation_document"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#3414"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#name.","pretty":"nsIWorkerDebugger::name","meta":{"structured":1,"pretty":"nsIWorkerDebugger::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIWorkerDebugger_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#7417"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#window.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#window.","pretty":"nsIWorkerDebugger::window","meta":{"structured":1,"pretty":"nsIWorkerDebugger::window","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#window.","js_sym":"#window","type_pretty":"mozIDOMWindow","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIWorkerDebugger#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIWorkerDebugger_window"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#7407"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceA#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceA#name.","pretty":"nsIXPCTestInterfaceA::name","meta":{"structured":1,"pretty":"nsIXPCTestInterfaceA::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceA#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceA#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIXPCTestInterfaceA_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#26255"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceB#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceB#name.","pretty":"nsIXPCTestInterfaceB::name","meta":{"structured":1,"pretty":"nsIXPCTestInterfaceB::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceB#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXPCTestInterfaceB#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIXPCTestInterfaceB_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#26261"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXULAppInfo#name.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXULAppInfo#name.","pretty":"nsIXULAppInfo::name","meta":{"structured":1,"pretty":"nsIXULAppInfo::name","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXULAppInfo#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIXULAppInfo#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIXULAppInfo_name"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#25402"}},"S_js_typescript_index.d.ts/global/Services.":{"sym":"S_js_typescript_index.d.ts/global/Services.","pretty":"Services","meta":{"structured":1,"pretty":"Services","sym":"S_js_typescript_index.d.ts/global/Services.","js_sym":"#Services","type_pretty":"JSServices","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/index.d.ts#36"}},"S_js_typescript_mobile/shared/actors/GeckoViewAutoFillParent.sys.mjs/GeckoViewAutoFillParent#focus().":{"sym":"S_js_typescript_mobile/shared/actors/GeckoViewAutoFillParent.sys.mjs/GeckoViewAutoFillParent#focus().","pretty":"GeckoViewAutoFillParent::focus","meta":{"structured":1,"pretty":"GeckoViewAutoFillParent::focus","sym":"S_js_typescript_mobile/shared/actors/GeckoViewAutoFillParent.sys.mjs/GeckoViewAutoFillParent#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/actors/GeckoViewAutoFillParent.sys.mjs/GeckoViewAutoFillParent#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/actors/GeckoViewAutoFillParent.sys.mjs#38"}},"S_js_typescript_mobile/shared/modules/geckoview/DelayedInit.sys.mjs/Impl.scheduleInit().(object)name.":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/DelayedInit.sys.mjs/Impl.scheduleInit().(object)name.","pretty":"object::name","meta":{"structured":1,"pretty":"object::name","sym":"S_js_typescript_mobile/shared/modules/geckoview/DelayedInit.sys.mjs/Impl.scheduleInit().(object)name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"GeckoView/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#focus().":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#focus().","pretty":"Autofill::focus","meta":{"structured":1,"pretty":"Autofill::focus","sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs#31"}},"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#start().":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#start().","pretty":"Autofill::start","meta":{"structured":1,"pretty":"Autofill::start","sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs/Autofill#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/modules/geckoview/GeckoViewAutofill.sys.mjs#19"}},"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/ProgressTracker#start().":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/ProgressTracker#start().","pretty":"ProgressTracker::start","meta":{"structured":1,"pretty":"ProgressTracker::start","sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/ProgressTracker#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/ProgressTracker#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs#216"}},"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/StateTracker#start().":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/StateTracker#start().","pretty":"StateTracker::start","meta":{"structured":1,"pretty":"StateTracker::start","sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/StateTracker#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs/StateTracker#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/modules/geckoview/GeckoViewProgress.sys.mjs#460"}},"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewRemoteDebugger.sys.mjs/USBRemoteDebugger#start().":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewRemoteDebugger.sys.mjs/USBRemoteDebugger#start().","pretty":"USBRemoteDebugger::start","meta":{"structured":1,"pretty":"USBRemoteDebugger::start","sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewRemoteDebugger.sys.mjs/USBRemoteDebugger#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewRemoteDebugger.sys.mjs/USBRemoteDebugger#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/modules/geckoview/GeckoViewRemoteDebugger.sys.mjs#100"}},"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewTelemetry.sys.mjs/GleanStopwatch#start().":{"sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewTelemetry.sys.mjs/GleanStopwatch#start().","pretty":"GleanStopwatch::start","meta":{"structured":1,"pretty":"GleanStopwatch::start","sym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewTelemetry.sys.mjs/GleanStopwatch#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"GeckoView/General","parentsym":"S_js_typescript_mobile/shared/modules/geckoview/GeckoViewTelemetry.sys.mjs/GleanStopwatch#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"mobile/shared/modules/geckoview/GeckoViewTelemetry.sys.mjs#28"}},"S_js_typescript_src/CLI.ts/InstallBrowser#name.":{"sym":"S_js_typescript_src/CLI.ts/InstallBrowser#name.","pretty":"InstallBrowser::name","meta":{"structured":1,"pretty":"InstallBrowser::name","sym":"S_js_typescript_src/CLI.ts/InstallBrowser#name.","js_sym":"#name","type_pretty":"Browser","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/CLI.ts/InstallBrowser#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/browsers/src/CLI.ts#28"}},"S_js_typescript_src/api/BluetoothEmulation.ts/PreconnectedPeripheral#name.":{"sym":"S_js_typescript_src/api/BluetoothEmulation.ts/PreconnectedPeripheral#name.","pretty":"PreconnectedPeripheral::name","meta":{"structured":1,"pretty":"PreconnectedPeripheral::name","sym":"S_js_typescript_src/api/BluetoothEmulation.ts/PreconnectedPeripheral#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/BluetoothEmulation.ts/PreconnectedPeripheral#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/BluetoothEmulation.ts#34"}},"S_js_typescript_src/api/Browser.ts/AddScreenParams#width.":{"sym":"S_js_typescript_src/api/Browser.ts/AddScreenParams#width.","pretty":"AddScreenParams::width","meta":{"structured":1,"pretty":"AddScreenParams::width","sym":"S_js_typescript_src/api/Browser.ts/AddScreenParams#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Browser.ts/AddScreenParams#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Browser.ts#300"}},"S_js_typescript_src/api/Browser.ts/ScreenInfo#width.":{"sym":"S_js_typescript_src/api/Browser.ts/ScreenInfo#width.","pretty":"ScreenInfo::width","meta":{"structured":1,"pretty":"ScreenInfo::width","sym":"S_js_typescript_src/api/Browser.ts/ScreenInfo#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Browser.ts/ScreenInfo#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Browser.ts#268"}},"S_js_typescript_src/api/Browser.ts/WindowBounds#width.":{"sym":"S_js_typescript_src/api/Browser.ts/WindowBounds#width.","pretty":"WindowBounds::width","meta":{"structured":1,"pretty":"WindowBounds::width","sym":"S_js_typescript_src/api/Browser.ts/WindowBounds#width.","js_sym":"#width","type_pretty":"number | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Browser.ts/WindowBounds#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Browser.ts#224"}},"S_js_typescript_src/api/DeviceRequestPrompt.ts/DeviceRequestPromptDevice#name.":{"sym":"S_js_typescript_src/api/DeviceRequestPrompt.ts/DeviceRequestPromptDevice#name.","pretty":"DeviceRequestPromptDevice::name","meta":{"structured":1,"pretty":"DeviceRequestPromptDevice::name","sym":"S_js_typescript_src/api/DeviceRequestPrompt.ts/DeviceRequestPromptDevice#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/DeviceRequestPrompt.ts/DeviceRequestPromptDevice#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/DeviceRequestPrompt.ts#23"}},"S_js_typescript_src/api/ElementHandle.ts/AutofillData#creditCard.typeLiteral261:name.":{"sym":"S_js_typescript_src/api/ElementHandle.ts/AutofillData#creditCard.typeLiteral261:name.","pretty":"AutofillData::creditCard::typeLiteral261::name","meta":{"structured":1,"pretty":"AutofillData::creditCard::typeLiteral261::name","sym":"S_js_typescript_src/api/ElementHandle.ts/AutofillData#creditCard.typeLiteral261:name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/ElementHandle.ts#1640"}},"S_js_typescript_src/api/ElementHandle.ts/BoundingBox#width.":{"sym":"S_js_typescript_src/api/ElementHandle.ts/BoundingBox#width.","pretty":"BoundingBox::width","meta":{"structured":1,"pretty":"BoundingBox::width","sym":"S_js_typescript_src/api/ElementHandle.ts/BoundingBox#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/ElementHandle.ts/BoundingBox#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/ElementHandle.ts#66"}},"S_js_typescript_src/api/ElementHandle.ts/BoxModel#width.":{"sym":"S_js_typescript_src/api/ElementHandle.ts/BoxModel#width.","pretty":"BoxModel::width","meta":{"structured":1,"pretty":"BoxModel::width","sym":"S_js_typescript_src/api/ElementHandle.ts/BoxModel#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/ElementHandle.ts/BoxModel#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/ElementHandle.ts#55"}},"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#focus().":{"sym":"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#focus().","pretty":"ElementHandle::focus","meta":{"structured":1,"pretty":"ElementHandle::focus","sym":"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#focus().","js_sym":"#focus","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/ElementHandle.ts#1095"}},"S_js_typescript_src/api/Frame.ts/Frame#focus().":{"sym":"S_js_typescript_src/api/Frame.ts/Frame#focus().","pretty":"Frame::focus","meta":{"structured":1,"pretty":"Frame::focus","sym":"S_js_typescript_src/api/Frame.ts/Frame#focus().","js_sym":"#focus","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Frame.ts/Frame#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Frame.ts#1075"}},"S_js_typescript_src/api/Frame.ts/Frame#name().":{"sym":"S_js_typescript_src/api/Frame.ts/Frame#name().","pretty":"Frame::name","meta":{"structured":1,"pretty":"Frame::name","sym":"S_js_typescript_src/api/Frame.ts/Frame#name().","js_sym":"#name","type_pretty":"string","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Frame.ts/Frame#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Frame.ts#854"}},"S_js_typescript_src/api/HTTPRequest.ts/headersArray().Array:typeLiteral14:name.":{"sym":"S_js_typescript_src/api/HTTPRequest.ts/headersArray().Array:typeLiteral14:name.","pretty":"headersArray::Array::typeLiteral14::name","meta":{"structured":1,"pretty":"headersArray::Array::typeLiteral14::name","sym":"S_js_typescript_src/api/HTTPRequest.ts/headersArray().Array:typeLiteral14:name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/HTTPRequest.ts#623"}},"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#ok().":{"sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#ok().","pretty":"HTTPResponse::ok","meta":{"structured":1,"pretty":"HTTPResponse::ok","sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#ok().","js_sym":"#ok","type_pretty":"boolean","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/HTTPResponse.ts#48"}},"S_js_typescript_src/api/Input.ts/TouchHandle#end().":{"sym":"S_js_typescript_src/api/Input.ts/TouchHandle#end().","pretty":"TouchHandle::end","meta":{"structured":1,"pretty":"TouchHandle::end","sym":"S_js_typescript_src/api/Input.ts/TouchHandle#end().","js_sym":"#end","type_pretty":"(method) end() => Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Input.ts/TouchHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#end().","S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#end()."],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Input.ts#488"}},"S_js_typescript_src/api/Page.ts/MediaFeature#name.":{"sym":"S_js_typescript_src/api/Page.ts/MediaFeature#name.","pretty":"MediaFeature::name","meta":{"structured":1,"pretty":"MediaFeature::name","sym":"S_js_typescript_src/api/Page.ts/MediaFeature#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Page.ts/MediaFeature#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Page.ts#243"}},"S_js_typescript_src/api/Page.ts/Page#focus().":{"sym":"S_js_typescript_src/api/Page.ts/Page#focus().","pretty":"Page::focus","meta":{"structured":1,"pretty":"Page::focus","sym":"S_js_typescript_src/api/Page.ts/Page#focus().","js_sym":"#focus","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Page.ts/Page#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Page.ts#2851"}},"S_js_typescript_src/bidi/ExposedFunction.ts/ExposableFunction#name.":{"sym":"S_js_typescript_src/bidi/ExposedFunction.ts/ExposableFunction#name.","pretty":"ExposableFunction::name","meta":{"structured":1,"pretty":"ExposableFunction::name","sym":"S_js_typescript_src/bidi/ExposedFunction.ts/ExposableFunction#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/ExposedFunction.ts/ExposableFunction#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/ExposedFunction.ts#45"}},"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#end().":{"sym":"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#end().","pretty":"BidiTouchHandle::end","meta":{"structured":1,"pretty":"BidiTouchHandle::end","sym":"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#end().","js_sym":"#end","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/api/Input.ts/TouchHandle#end()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/Input.ts#694"}},"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#start().":{"sym":"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#start().","pretty":"BidiTouchHandle::start","meta":{"structured":1,"pretty":"BidiTouchHandle::start","sym":"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/Input.ts/BidiTouchHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/Input.ts#643"}},"S_js_typescript_src/bidi/core/Session.ts/Session#end().":{"sym":"S_js_typescript_src/bidi/core/Session.ts/Session#end().","pretty":"Session::end","meta":{"structured":1,"pretty":"Session::end","sym":"S_js_typescript_src/bidi/core/Session.ts/Session#end().","js_sym":"#end","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/core/Session.ts/Session#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/core/Session.ts#146"}},"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#info.":{"sym":"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#info.","pretty":"UserPrompt::info","meta":{"structured":1,"pretty":"UserPrompt::info","sym":"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#info.","js_sym":"#info","type_pretty":"Bidi.BrowsingContext.UserPromptOpenedParameters","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/core/UserPrompt.ts#56"}},"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#name.":{"sym":"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#name.","pretty":"SerializedAXNode::name","meta":{"structured":1,"pretty":"SerializedAXNode::name","sym":"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Accessibility.ts#25"}},"S_js_typescript_src/cdp/Coverage.ts/CSSCoverage#start().":{"sym":"S_js_typescript_src/cdp/Coverage.ts/CSSCoverage#start().","pretty":"CSSCoverage::start","meta":{"structured":1,"pretty":"CSSCoverage::start","sym":"S_js_typescript_src/cdp/Coverage.ts/CSSCoverage#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Coverage.ts/CSSCoverage#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Coverage.ts#350"}},"S_js_typescript_src/cdp/Coverage.ts/CoverageEntry#ranges.Array:typeLiteral0:end.":{"sym":"S_js_typescript_src/cdp/Coverage.ts/CoverageEntry#ranges.Array:typeLiteral0:end.","pretty":"CoverageEntry::ranges::Array::typeLiteral0::end","meta":{"structured":1,"pretty":"CoverageEntry::ranges::Array::typeLiteral0::end","sym":"S_js_typescript_src/cdp/Coverage.ts/CoverageEntry#ranges.Array:typeLiteral0:end.","js_sym":"#end","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Coverage.ts#31"}},"S_js_typescript_src/cdp/Coverage.ts/CoverageEntry#ranges.Array:typeLiteral0:start.":{"sym":"S_js_typescript_src/cdp/Coverage.ts/CoverageEntry#ranges.Array:typeLiteral0:start.","pretty":"CoverageEntry::ranges::Array::typeLiteral0::start","meta":{"structured":1,"pretty":"CoverageEntry::ranges::Array::typeLiteral0::start","sym":"S_js_typescript_src/cdp/Coverage.ts/CoverageEntry#ranges.Array:typeLiteral0:start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Coverage.ts#31"}},"S_js_typescript_src/cdp/Coverage.ts/JSCoverage#start().":{"sym":"S_js_typescript_src/cdp/Coverage.ts/JSCoverage#start().","pretty":"JSCoverage::start","meta":{"structured":1,"pretty":"JSCoverage::start","sym":"S_js_typescript_src/cdp/Coverage.ts/JSCoverage#start().","js_sym":"#start","type_pretty":"Promise<...>","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Coverage.ts/JSCoverage#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Coverage.ts#216"}},"S_js_typescript_src/cdp/Coverage.ts/convertToDisjointRanges().Array:typeLiteral46:end.":{"sym":"S_js_typescript_src/cdp/Coverage.ts/convertToDisjointRanges().Array:typeLiteral46:end.","pretty":"convertToDisjointRanges::Array::typeLiteral46::end","meta":{"structured":1,"pretty":"convertToDisjointRanges::Array::typeLiteral46::end","sym":"S_js_typescript_src/cdp/Coverage.ts/convertToDisjointRanges().Array:typeLiteral46:end.","js_sym":"#end","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Coverage.ts#451"}},"S_js_typescript_src/cdp/Coverage.ts/convertToDisjointRanges().Array:typeLiteral46:start.":{"sym":"S_js_typescript_src/cdp/Coverage.ts/convertToDisjointRanges().Array:typeLiteral46:start.","pretty":"convertToDisjointRanges::Array::typeLiteral46::start","meta":{"structured":1,"pretty":"convertToDisjointRanges::Array::typeLiteral46::start","sym":"S_js_typescript_src/cdp/Coverage.ts/convertToDisjointRanges().Array:typeLiteral46:start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Coverage.ts#451"}},"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#end().":{"sym":"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#end().","pretty":"CdpTouchHandle::end","meta":{"structured":1,"pretty":"CdpTouchHandle::end","sym":"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#end().","js_sym":"#end","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/api/Input.ts/TouchHandle#end()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Input.ts#602"}},"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#start().":{"sym":"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#start().","pretty":"CdpTouchHandle::start","meta":{"structured":1,"pretty":"CdpTouchHandle::start","sym":"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Input.ts/CdpTouchHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Input.ts#580"}},"S_js_typescript_src/cdp/IsolatedWorld.ts/PageBinding#name.":{"sym":"S_js_typescript_src/cdp/IsolatedWorld.ts/PageBinding#name.","pretty":"PageBinding::name","meta":{"structured":1,"pretty":"PageBinding::name","sym":"S_js_typescript_src/cdp/IsolatedWorld.ts/PageBinding#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/IsolatedWorld.ts/PageBinding#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/IsolatedWorld.ts#35"}},"S_js_typescript_src/cdp/Tracing.ts/Tracing#start().":{"sym":"S_js_typescript_src/cdp/Tracing.ts/Tracing#start().","pretty":"Tracing::start","meta":{"structured":1,"pretty":"Tracing::start","sym":"S_js_typescript_src/cdp/Tracing.ts/Tracing#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Tracing.ts/Tracing#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Tracing.ts#66"}},"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#querySelector.","pretty":"ARIAQueryHandler::querySelector","meta":{"structured":1,"pretty":"ARIAQueryHandler::querySelector","sym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/AriaQueryHandler.ts#65"}},"S_js_typescript_src/common/AriaQueryHandler.ts/ARIASelector#name.":{"sym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIASelector#name.","pretty":"ARIASelector::name","meta":{"structured":1,"pretty":"ARIASelector::name","sym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIASelector#name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIASelector#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/AriaQueryHandler.ts#15"}},"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#querySelector.","pretty":"CSSQueryHandler::querySelector","meta":{"structured":1,"pretty":"CSSQueryHandler::querySelector","sym":"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"string) => AsyncIterable<...>; }>) =>...","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/CSSQueryHandler.ts#15"}},"S_js_typescript_src/common/Cookie.ts/CookieData#name.":{"sym":"S_js_typescript_src/common/Cookie.ts/CookieData#name.","pretty":"CookieData::name","meta":{"structured":1,"pretty":"CookieData::name","sym":"S_js_typescript_src/common/Cookie.ts/CookieData#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/Cookie.ts/CookieData#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/Cookie.ts#162"}},"S_js_typescript_src/common/Cookie.ts/CookieParam#name.":{"sym":"S_js_typescript_src/common/Cookie.ts/CookieParam#name.","pretty":"CookieParam::name","meta":{"structured":1,"pretty":"CookieParam::name","sym":"S_js_typescript_src/common/Cookie.ts/CookieParam#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/Cookie.ts/CookieParam#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/Cookie.ts#97"}},"S_js_typescript_src/common/Cookie.ts/DeleteCookiesRequest#name.":{"sym":"S_js_typescript_src/common/Cookie.ts/DeleteCookiesRequest#name.","pretty":"DeleteCookiesRequest::name","meta":{"structured":1,"pretty":"DeleteCookiesRequest::name","sym":"S_js_typescript_src/common/Cookie.ts/DeleteCookiesRequest#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/Cookie.ts/DeleteCookiesRequest#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/Cookie.ts#219"}},"S_js_typescript_src/common/PDFOptions.ts/PDFOptions#width.":{"sym":"S_js_typescript_src/common/PDFOptions.ts/PDFOptions#width.","pretty":"PDFOptions::width","meta":{"structured":1,"pretty":"PDFOptions::width","sym":"S_js_typescript_src/common/PDFOptions.ts/PDFOptions#width.","js_sym":"#width","type_pretty":"string | number | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PDFOptions.ts/PDFOptions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PDFOptions.ts#128"}},"S_js_typescript_src/common/PDFOptions.ts/PaperFormatDimensions#width.":{"sym":"S_js_typescript_src/common/PDFOptions.ts/PaperFormatDimensions#width.","pretty":"PaperFormatDimensions::width","meta":{"structured":1,"pretty":"PaperFormatDimensions::width","sym":"S_js_typescript_src/common/PDFOptions.ts/PaperFormatDimensions#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PDFOptions.ts/PaperFormatDimensions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PDFOptions.ts#195"}},"S_js_typescript_src/common/PDFOptions.ts/ParsedPDFOptionsInterface#width.":{"sym":"S_js_typescript_src/common/PDFOptions.ts/ParsedPDFOptionsInterface#width.","pretty":"ParsedPDFOptionsInterface::width","meta":{"structured":1,"pretty":"ParsedPDFOptionsInterface::width","sym":"S_js_typescript_src/common/PDFOptions.ts/ParsedPDFOptionsInterface#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PDFOptions.ts/ParsedPDFOptionsInterface#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PDFOptions.ts#203"}},"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#querySelector.","pretty":"PQueryHandler::querySelector","meta":{"structured":1,"pretty":"PQueryHandler::querySelector","sym":"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PQueryHandler.ts#24"}},"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#querySelector.","pretty":"PierceQueryHandler::querySelector","meta":{"structured":1,"pretty":"PierceQueryHandler::querySelector","sym":"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"string) => AsyncIterable<...>; }>)...","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PierceQueryHandler.ts#15"}},"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#querySelector.","pretty":"QueryHandler::querySelector","meta":{"structured":1,"pretty":"QueryHandler::querySelector","sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/QueryHandler.ts#52"}},"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#waitFor().":{"sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#waitFor().","pretty":"QueryHandler::waitFor","meta":{"structured":1,"pretty":"QueryHandler::waitFor","sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#waitFor().","js_sym":"#waitFor","type_pretty":"Promise<...>","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/QueryHandler.ts#148"}},"S_js_typescript_src/common/Viewport.ts/Viewport#width.":{"sym":"S_js_typescript_src/common/Viewport.ts/Viewport#width.","pretty":"Viewport::width","meta":{"structured":1,"pretty":"Viewport::width","sym":"S_js_typescript_src/common/Viewport.ts/Viewport#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/Viewport.ts/Viewport#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/Viewport.ts#17"}},"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#querySelector.","pretty":"XPathQueryHandler::querySelector","meta":{"structured":1,"pretty":"XPathQueryHandler::querySelector","sym":"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/XPathQueryHandler.ts#25"}},"S_js_typescript_src/common/types.ts/BindingPayload#name.":{"sym":"S_js_typescript_src/common/types.ts/BindingPayload#name.","pretty":"BindingPayload::name","meta":{"structured":1,"pretty":"BindingPayload::name","sym":"S_js_typescript_src/common/types.ts/BindingPayload#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/types.ts/BindingPayload#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/types.ts#41"}},"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#querySelector().":{"sym":"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#querySelector().","pretty":"CustomQuerySelector::querySelector","meta":{"structured":1,"pretty":"CustomQuerySelector::querySelector","sym":"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#querySelector().","js_sym":"#querySelector","type_pretty":"string) => Awaitable","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts#14"}},"S_js_typescript_src/injected/PQuerySelector.ts/PPseudoSelector#name.":{"sym":"S_js_typescript_src/injected/PQuerySelector.ts/PPseudoSelector#name.","pretty":"PPseudoSelector::name","meta":{"structured":1,"pretty":"PPseudoSelector::name","sym":"S_js_typescript_src/injected/PQuerySelector.ts/PPseudoSelector#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/PQuerySelector.ts/PPseudoSelector#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/PQuerySelector.ts#26"}},"S_js_typescript_src/injected/Poller.ts/IntervalPoller#start().":{"sym":"S_js_typescript_src/injected/Poller.ts/IntervalPoller#start().","pretty":"IntervalPoller::start","meta":{"structured":1,"pretty":"IntervalPoller::start","sym":"S_js_typescript_src/injected/Poller.ts/IntervalPoller#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/Poller.ts/IntervalPoller#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/injected/Poller.ts/Poller#start()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/Poller.ts#135"}},"S_js_typescript_src/injected/Poller.ts/MutationPoller#start().":{"sym":"S_js_typescript_src/injected/Poller.ts/MutationPoller#start().","pretty":"MutationPoller::start","meta":{"structured":1,"pretty":"MutationPoller::start","sym":"S_js_typescript_src/injected/Poller.ts/MutationPoller#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/Poller.ts/MutationPoller#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/injected/Poller.ts/Poller#start()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/Poller.ts#34"}},"S_js_typescript_src/injected/Poller.ts/Poller#start().":{"sym":"S_js_typescript_src/injected/Poller.ts/Poller#start().","pretty":"Poller::start","meta":{"structured":1,"pretty":"Poller::start","sym":"S_js_typescript_src/injected/Poller.ts/Poller#start().","js_sym":"#start","type_pretty":"(method) start() => Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/Poller.ts/Poller#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_src/injected/Poller.ts/MutationPoller#start().","S_js_typescript_src/injected/Poller.ts/RAFPoller#start().","S_js_typescript_src/injected/Poller.ts/IntervalPoller#start()."],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/Poller.ts#14"}},"S_js_typescript_src/injected/Poller.ts/RAFPoller#start().":{"sym":"S_js_typescript_src/injected/Poller.ts/RAFPoller#start().","pretty":"RAFPoller::start","meta":{"structured":1,"pretty":"RAFPoller::start","sym":"S_js_typescript_src/injected/Poller.ts/RAFPoller#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/Poller.ts/RAFPoller#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/injected/Poller.ts/Poller#start()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/Poller.ts#84"}},"S_js_typescript_src/launch.ts/ErrorLike#name.":{"sym":"S_js_typescript_src/launch.ts/ErrorLike#name.","pretty":"ErrorLike::name","meta":{"structured":1,"pretty":"ErrorLike::name","sym":"S_js_typescript_src/launch.ts/ErrorLike#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/launch.ts/ErrorLike#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/browsers/src/launch.ts#602"}},"S_js_typescript_src/mouse.spec.ts/Dimensions#width.":{"sym":"S_js_typescript_src/mouse.spec.ts/Dimensions#width.","pretty":"Dimensions::width","meta":{"structured":1,"pretty":"Dimensions::width","sym":"S_js_typescript_src/mouse.spec.ts/Dimensions#width.","js_sym":"#width","type_pretty":"number","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/mouse.spec.ts/Dimensions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/test/src/mouse.spec.ts#28"}},"S_js_typescript_src/schematics/utils/files.ts/FilesOptions#options.typeLiteral0:name.":{"sym":"S_js_typescript_src/schematics/utils/files.ts/FilesOptions#options.typeLiteral0:name.","pretty":"FilesOptions::options::typeLiteral0::name","meta":{"structured":1,"pretty":"FilesOptions::options::typeLiteral0::name","sym":"S_js_typescript_src/schematics/utils/files.ts/FilesOptions#options.typeLiteral0:name.","js_sym":"#name","type_pretty":"string | undefined","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/ng-schematics/src/schematics/utils/files.ts#26"}},"S_js_typescript_src/schematics/utils/packages.ts/NodePackage#name.":{"sym":"S_js_typescript_src/schematics/utils/packages.ts/NodePackage#name.","pretty":"NodePackage::name","meta":{"structured":1,"pretty":"NodePackage::name","sym":"S_js_typescript_src/schematics/utils/packages.ts/NodePackage#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/schematics/utils/packages.ts/NodePackage#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/ng-schematics/src/schematics/utils/packages.ts#20"}},"S_js_typescript_src/schematics/utils/packages.ts/NodeScripts#name.":{"sym":"S_js_typescript_src/schematics/utils/packages.ts/NodeScripts#name.","pretty":"NodeScripts::name","meta":{"structured":1,"pretty":"NodeScripts::name","sym":"S_js_typescript_src/schematics/utils/packages.ts/NodeScripts#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/schematics/utils/packages.ts/NodeScripts#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/ng-schematics/src/schematics/utils/packages.ts#24"}},"S_js_typescript_src/schematics/utils/packages.ts/updateJsonValues().(updates)Array:typeLiteral16:name.":{"sym":"S_js_typescript_src/schematics/utils/packages.ts/updateJsonValues().(updates)Array:typeLiteral16:name.","pretty":"updates::Array::typeLiteral16::name","meta":{"structured":1,"pretty":"updates::Array::typeLiteral16::name","sym":"S_js_typescript_src/schematics/utils/packages.ts/updateJsonValues().(updates)Array:typeLiteral16:name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/ng-schematics/src/schematics/utils/packages.ts#69"}},"S_js_typescript_src/schematics/utils/types.ts/SchematicsSpec#name.":{"sym":"S_js_typescript_src/schematics/utils/types.ts/SchematicsSpec#name.","pretty":"SchematicsSpec::name","meta":{"structured":1,"pretty":"SchematicsSpec::name","sym":"S_js_typescript_src/schematics/utils/types.ts/SchematicsSpec#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/schematics/utils/types.ts/SchematicsSpec#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/ng-schematics/src/schematics/utils/types.ts#44"}},"S_js_typescript_src/util/ErrorLike.ts/ErrorLike#name.":{"sym":"S_js_typescript_src/util/ErrorLike.ts/ErrorLike#name.","pretty":"ErrorLike::name","meta":{"structured":1,"pretty":"ErrorLike::name","sym":"S_js_typescript_src/util/ErrorLike.ts/ErrorLike#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/util/ErrorLike.ts/ErrorLike#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/util/ErrorLike.ts#13"}},"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:chatbot.typeLiteral1355:variables.typeLiteral1356:prefs.":{"sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:chatbot.typeLiteral1355:variables.typeLiteral1356:prefs.","pretty":"FeatureManifest::typeLiteral0::chatbot::typeLiteral1355::variables::typeLiteral1356::prefs","meta":{"structured":1,"pretty":"FeatureManifest::typeLiteral0::chatbot::typeLiteral1355::variables::typeLiteral1356::prefs","sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:chatbot.typeLiteral1355:variables.typeLiteral1356:prefs.","js_sym":"#prefs","type_pretty":"string; }","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/subs/FeatureManifest.sys.d.mts#5549"}},"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:linkPreviews.typeLiteral1360:variables.typeLiteral1361:prefs.":{"sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:linkPreviews.typeLiteral1360:variables.typeLiteral1361:prefs.","pretty":"FeatureManifest::typeLiteral0::linkPreviews::typeLiteral1360::variables::typeLiteral1361::prefs","meta":{"structured":1,"pretty":"FeatureManifest::typeLiteral0::linkPreviews::typeLiteral1360::variables::typeLiteral1361::prefs","sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:linkPreviews.typeLiteral1360:variables.typeLiteral1361:prefs.","js_sym":"#prefs","type_pretty":"string; }","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/subs/FeatureManifest.sys.d.mts#5568"}},"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:prefFlips.typeLiteral16:variables.typeLiteral17:prefs.":{"sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:prefFlips.typeLiteral16:variables.typeLiteral17:prefs.","pretty":"FeatureManifest::typeLiteral0::prefFlips::typeLiteral16::variables::typeLiteral17::prefs","meta":{"structured":1,"pretty":"FeatureManifest::typeLiteral0::prefFlips::typeLiteral16::variables::typeLiteral17::prefs","sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:prefFlips.typeLiteral16:variables.typeLiteral17:prefs.","js_sym":"#prefs","type_pretty":"string; }","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/subs/FeatureManifest.sys.d.mts#72"}},"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:scriptloader.":{"sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:scriptloader.","pretty":"FeatureManifest::typeLiteral0::scriptloader","meta":{"structured":1,"pretty":"FeatureManifest::typeLiteral0::scriptloader","sym":"S_js_typescript_subs/FeatureManifest.sys.d.mts/FeatureManifest.typeLiteral0:scriptloader.","js_sym":"#scriptloader","type_pretty":"{ ...; }; }; }","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/subs/FeatureManifest.sys.d.mts#4738"}},"S_js_typescript_toolkit/components/crashes/RemoteSettingsCrashPull.sys.mjs/RemoteSettingsCrashPull.start().":{"sym":"S_js_typescript_toolkit/components/crashes/RemoteSettingsCrashPull.sys.mjs/RemoteSettingsCrashPull.start().","pretty":"RemoteSettingsCrashPull::start","meta":{"structured":1,"pretty":"RemoteSettingsCrashPull::start","sym":"S_js_typescript_toolkit/components/crashes/RemoteSettingsCrashPull.sys.mjs/RemoteSettingsCrashPull.start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Toolkit/Crash Reporting","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/crashes/RemoteSettingsCrashPull.sys.mjs#26"}},"S_js_typescript_toolkit/components/enterprisepolicies/tests/EnterprisePolicyTesting.sys.mjs/PoliciesPrefTracker.start().":{"sym":"S_js_typescript_toolkit/components/enterprisepolicies/tests/EnterprisePolicyTesting.sys.mjs/PoliciesPrefTracker.start().","pretty":"PoliciesPrefTracker::start","meta":{"structured":1,"pretty":"PoliciesPrefTracker::start","sym":"S_js_typescript_toolkit/components/enterprisepolicies/tests/EnterprisePolicyTesting.sys.mjs/PoliciesPrefTracker.start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Firefox/Enterprise Policies","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/enterprisepolicies/tests/EnterprisePolicyTesting.sys.mjs#125"}},"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/prefs.":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/prefs.","pretty":"prefs","meta":{"structured":1,"pretty":"prefs","sym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/prefs.","js_sym":"#prefs","type_pretty":"any","kind":"field","subsystem":"WebExtensions/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionPermissions.sys.mjs#45"}},"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#window.":{"sym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#window.","pretty":"WindowBase::window","meta":{"structured":1,"pretty":"WindowBase::window","sym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#window.","js_sym":"#window","type_pretty":"any","kind":"field","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/types/ext-tabs-base.d.ts#529"}},"S_js_typescript_toolkit/components/extensions/types/extensions.ts/\"resource://testing-common/Assert.sys.mjs\"/Assert/ok.":{"sym":"S_js_typescript_toolkit/components/extensions/types/extensions.ts/\"resource://testing-common/Assert.sys.mjs\"/Assert/ok.","pretty":"ok","meta":{"structured":1,"pretty":"ok","sym":"S_js_typescript_toolkit/components/extensions/types/extensions.ts/\"resource://testing-common/Assert.sys.mjs\"/Assert/ok.","js_sym":"#ok","type_pretty":"any[]) => void","kind":"field","subsystem":"WebExtensions/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/types/extensions.ts#50"}},"S_js_typescript_toolkit/components/formautofill/shared/FormAutofillHandler.sys.mjs/FormAutofillHandler#window.":{"sym":"S_js_typescript_toolkit/components/formautofill/shared/FormAutofillHandler.sys.mjs/FormAutofillHandler#window.","pretty":"FormAutofillHandler::window","meta":{"structured":1,"pretty":"FormAutofillHandler::window","sym":"S_js_typescript_toolkit/components/formautofill/shared/FormAutofillHandler.sys.mjs/FormAutofillHandler#window.","js_sym":"#window","type_pretty":"null","kind":"field","subsystem":"Toolkit/Form Autofill","parentsym":"S_js_typescript_toolkit/components/formautofill/shared/FormAutofillHandler.sys.mjs/FormAutofillHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/formautofill/shared/FormAutofillHandler.sys.mjs#40"}},"S_js_typescript_toolkit/components/formautofill/shared/HeuristicsRegExp.sys.mjs/HeuristicsRegExp.getRules().(rules)name.":{"sym":"S_js_typescript_toolkit/components/formautofill/shared/HeuristicsRegExp.sys.mjs/HeuristicsRegExp.getRules().(rules)name.","pretty":"rules::name","meta":{"structured":1,"pretty":"rules::name","sym":"S_js_typescript_toolkit/components/formautofill/shared/HeuristicsRegExp.sys.mjs/HeuristicsRegExp.getRules().(rules)name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"Toolkit/Form Autofill","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_toolkit/components/ipprotection/IPPChannelFilter.sys.mjs/IPPChannelFilter#start().":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPPChannelFilter.sys.mjs/IPPChannelFilter#start().","pretty":"IPPChannelFilter::start","meta":{"structured":1,"pretty":"IPPChannelFilter::start","sym":"S_js_typescript_toolkit/components/ipprotection/IPPChannelFilter.sys.mjs/IPPChannelFilter#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPPChannelFilter.sys.mjs/IPPChannelFilter#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPPChannelFilter.sys.mjs#331"}},"S_js_typescript_toolkit/components/ipprotection/IPPLifecycleHelper.sys.mjs/IPPLifeCycleHelperClass#start().":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPPLifecycleHelper.sys.mjs/IPPLifeCycleHelperClass#start().","pretty":"IPPLifeCycleHelperClass::start","meta":{"structured":1,"pretty":"IPPLifeCycleHelperClass::start","sym":"S_js_typescript_toolkit/components/ipprotection/IPPLifecycleHelper.sys.mjs/IPPLifeCycleHelperClass#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPPLifecycleHelper.sys.mjs/IPPLifeCycleHelperClass#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPPLifecycleHelper.sys.mjs#63"}},"S_js_typescript_toolkit/components/ipprotection/IPPNetworkErrorObserver.sys.mjs/IPPNetworkErrorObserver#start().":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPPNetworkErrorObserver.sys.mjs/IPPNetworkErrorObserver#start().","pretty":"IPPNetworkErrorObserver::start","meta":{"structured":1,"pretty":"IPPNetworkErrorObserver::start","sym":"S_js_typescript_toolkit/components/ipprotection/IPPNetworkErrorObserver.sys.mjs/IPPNetworkErrorObserver#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPPNetworkErrorObserver.sys.mjs/IPPNetworkErrorObserver#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPPNetworkErrorObserver.sys.mjs#15"}},"S_js_typescript_toolkit/components/ipprotection/IPPProxyManager.sys.mjs/IPPProxyManagerSingleton#start().":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPPProxyManager.sys.mjs/IPPProxyManagerSingleton#start().","pretty":"IPPProxyManagerSingleton::start","meta":{"structured":1,"pretty":"IPPProxyManagerSingleton::start","sym":"S_js_typescript_toolkit/components/ipprotection/IPPProxyManager.sys.mjs/IPPProxyManagerSingleton#start().","js_sym":"#start","type_pretty":"string | undefined; }>","kind":"method","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPPProxyManager.sys.mjs/IPPProxyManagerSingleton#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPPProxyManager.sys.mjs#375"}},"S_js_typescript_toolkit/components/ipprotection/IPPSessionPrefManager.sys.mjs/IPPSessionPrefManagerClass#start().":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPPSessionPrefManager.sys.mjs/IPPSessionPrefManagerClass#start().","pretty":"IPPSessionPrefManagerClass::start","meta":{"structured":1,"pretty":"IPPSessionPrefManagerClass::start","sym":"S_js_typescript_toolkit/components/ipprotection/IPPSessionPrefManager.sys.mjs/IPPSessionPrefManagerClass#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPPSessionPrefManager.sys.mjs/IPPSessionPrefManagerClass#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPPSessionPrefManager.sys.mjs#68"}},"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/City#name.":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/City#name.","pretty":"City::name","meta":{"structured":1,"pretty":"City::name","sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/City#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/City#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs#154"}},"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/ConnectProtocol#name.":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/ConnectProtocol#name.","pretty":"ConnectProtocol::name","meta":{"structured":1,"pretty":"ConnectProtocol::name","sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/ConnectProtocol#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/ConnectProtocol#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs#83"}},"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/Country#name.":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/Country#name.","pretty":"Country::name","meta":{"structured":1,"pretty":"Country::name","sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/Country#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/Country#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs#185"}},"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/IProtocol#name.":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/IProtocol#name.","pretty":"IProtocol::name","meta":{"structured":1,"pretty":"IProtocol::name","sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/IProtocol#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/IProtocol#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs#50"}},"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/MasqueProtocol#name.":{"sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/MasqueProtocol#name.","pretty":"MasqueProtocol::name","meta":{"structured":1,"pretty":"MasqueProtocol::name","sym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/MasqueProtocol#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/IP Protection","parentsym":"S_js_typescript_toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs/MasqueProtocol#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ipprotection/IPProtectionServerlist.sys.mjs#67"}},"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#ok.":{"sym":"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#ok.","pretty":"ProgressAndStatusCallbackParams::ok","meta":{"structured":1,"pretty":"ProgressAndStatusCallbackParams::ok","sym":"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#ok.","js_sym":"#ok","type_pretty":"boolean | null","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/content/Utils.sys.mjs#164"}},"S_js_typescript_toolkit/components/ml/content/backends/StaticEmbeddingsPipeline.d.ts/EmbeddingMetrics#runTimestamps.Array:typeLiteral0:name.":{"sym":"S_js_typescript_toolkit/components/ml/content/backends/StaticEmbeddingsPipeline.d.ts/EmbeddingMetrics#runTimestamps.Array:typeLiteral0:name.","pretty":"EmbeddingMetrics::runTimestamps::Array::typeLiteral0::name","meta":{"structured":1,"pretty":"EmbeddingMetrics::runTimestamps::Array::typeLiteral0::name","sym":"S_js_typescript_toolkit/components/ml/content/backends/StaticEmbeddingsPipeline.d.ts/EmbeddingMetrics#runTimestamps.Array:typeLiteral0:name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/Machine Learning/On Device","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/content/backends/StaticEmbeddingsPipeline.d.ts#42"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/BaseMetrics#runTimestamps.Array:typeLiteral16:name.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/BaseMetrics#runTimestamps.Array:typeLiteral16:name.","pretty":"BaseMetrics::runTimestamps::Array::typeLiteral16::name","meta":{"structured":1,"pretty":"BaseMetrics::runTimestamps::Array::typeLiteral16::name","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/BaseMetrics#runTimestamps.Array:typeLiteral16:name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/Machine Learning/On Device","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#441"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/ChunkResponse#toolCalls.Array:typeLiteral43:function.typeLiteral44:name.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/ChunkResponse#toolCalls.Array:typeLiteral43:function.typeLiteral44:name.","pretty":"ChunkResponse::toolCalls::Array::typeLiteral43::function::typeLiteral44::name","meta":{"structured":1,"pretty":"ChunkResponse::toolCalls::Array::typeLiteral43::function::typeLiteral44::name","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/ChunkResponse#toolCalls.Array:typeLiteral43:function.typeLiteral44:name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Core/Machine Learning/On Device","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#596"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#end.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#end.","pretty":"EngineCreationInterception::end","meta":{"structured":1,"pretty":"EngineCreationInterception::end","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#end.","js_sym":"#end","type_pretty":"number","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#135"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#start.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#start.","pretty":"EngineCreationInterception::start","meta":{"structured":1,"pretty":"EngineCreationInterception::start","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/EngineCreationInterception#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#132"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#ok().":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#ok().","pretty":"MLPerfAssertions::ok","meta":{"structured":1,"pretty":"MLPerfAssertions::ok","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#ok().","js_sym":"#ok","type_pretty":"string | undefined) => void","kind":"method","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#319"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#end.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#end.","pretty":"MLPerfEngineCreationObservation::end","meta":{"structured":1,"pretty":"MLPerfEngineCreationObservation::end","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#end.","js_sym":"#end","type_pretty":"number","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#215"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#start.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#start.","pretty":"MLPerfEngineCreationObservation::start","meta":{"structured":1,"pretty":"MLPerfEngineCreationObservation::start","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineCreationObservation#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#212"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#end.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#end.","pretty":"MLPerfEngineRunObservation::end","meta":{"structured":1,"pretty":"MLPerfEngineRunObservation::end","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#end.","js_sym":"#end","type_pretty":"number","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#247"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#start.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#start.","pretty":"MLPerfEngineRunObservation::start","meta":{"structured":1,"pretty":"MLPerfEngineRunObservation::start","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#start.","js_sym":"#start","type_pretty":"number","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfEngineRunObservation#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#244"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#Assert.":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#Assert.","pretty":"MLPerfTestContext::Assert","meta":{"structured":1,"pretty":"MLPerfTestContext::Assert","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#Assert.","js_sym":"#Assert","type_pretty":"MLPerfAssertions","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#350"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#info().":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#info().","pretty":"MLPerfTestContext::info","meta":{"structured":1,"pretty":"MLPerfTestContext::info","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#info().","js_sym":"#info","type_pretty":"string) => void","kind":"method","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#347"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#registerCleanupFunction().":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#registerCleanupFunction().","pretty":"MLPerfTestContext::registerCleanupFunction","meta":{"structured":1,"pretty":"MLPerfTestContext::registerCleanupFunction","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#registerCleanupFunction().","js_sym":"#registerCleanupFunction","type_pretty":"() => void) => void","kind":"method","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#357"}},"S_js_typescript_toolkit/components/narrate/Narrator.sys.mjs/Narrator().prototype.start().":{"sym":"S_js_typescript_toolkit/components/narrate/Narrator.sys.mjs/Narrator().prototype.start().","pretty":"Narrator::prototype::start","meta":{"structured":1,"pretty":"Narrator::prototype::start","sym":"S_js_typescript_toolkit/components/narrate/Narrator.sys.mjs/Narrator().prototype.start().","js_sym":"#start","type_pretty":"any","kind":"method","subsystem":"Toolkit/Reader Mode","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/narrate/Narrator.sys.mjs#248"}},"S_js_typescript_toolkit/components/normandy/lib/NormandyApi.sys.mjs/prefs.":{"sym":"S_js_typescript_toolkit/components/normandy/lib/NormandyApi.sys.mjs/prefs.","pretty":"prefs","meta":{"structured":1,"pretty":"prefs","sym":"S_js_typescript_toolkit/components/normandy/lib/NormandyApi.sys.mjs/prefs.","js_sym":"#prefs","type_pretty":"nsIPrefBranch","kind":"field","subsystem":"Firefox/Normandy Client","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/normandy/lib/NormandyApi.sys.mjs#11"}},"S_js_typescript_toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs/PreferenceExperiments.start().":{"sym":"S_js_typescript_toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs/PreferenceExperiments.start().","pretty":"PreferenceExperiments::start","meta":{"structured":1,"pretty":"PreferenceExperiments::start","sym":"S_js_typescript_toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs/PreferenceExperiments.start().","js_sym":"#start","type_pretty":"Experiment","kind":"method","subsystem":"Firefox/Normandy Client","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs#341"}},"S_js_typescript_toolkit/components/passwordmgr/test/LoginTestUtils.sys.mjs/Assert.":{"sym":"S_js_typescript_toolkit/components/passwordmgr/test/LoginTestUtils.sys.mjs/Assert.","pretty":"Assert","meta":{"structured":1,"pretty":"Assert","sym":"S_js_typescript_toolkit/components/passwordmgr/test/LoginTestUtils.sys.mjs/Assert.","js_sym":"#Assert","type_pretty":"typeof Assert","kind":"field","subsystem":"Toolkit/Password Manager","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/passwordmgr/test/LoginTestUtils.sys.mjs#16"}},"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#end().":{"sym":"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#end().","pretty":"InputSession::end","meta":{"structured":1,"pretty":"InputSession::end","sym":"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#end().","js_sym":"#end","type_pretty":"void","kind":"method","subsystem":"Toolkit/Places","parentsym":"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/places/ExtensionSearchHandler.sys.mjs#83"}},"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#start().":{"sym":"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#start().","pretty":"InputSession::start","meta":{"structured":1,"pretty":"InputSession::start","sym":"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Toolkit/Places","parentsym":"S_js_typescript_toolkit/components/places/ExtensionSearchHandler.sys.mjs/InputSession#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/places/ExtensionSearchHandler.sys.mjs#60"}},"S_js_typescript_toolkit/components/places/TaggingService.sys.mjs/TagSearch#start().":{"sym":"S_js_typescript_toolkit/components/places/TaggingService.sys.mjs/TagSearch#start().","pretty":"TagSearch::start","meta":{"structured":1,"pretty":"TagSearch::start","sym":"S_js_typescript_toolkit/components/places/TaggingService.sys.mjs/TagSearch#start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Toolkit/Places","parentsym":"S_js_typescript_toolkit/components/places/TaggingService.sys.mjs/TagSearch#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/places/TaggingService.sys.mjs#467"}},"S_js_typescript_toolkit/components/telemetry/app/TelemetrySend.sys.mjs/SendScheduler.start().":{"sym":"S_js_typescript_toolkit/components/telemetry/app/TelemetrySend.sys.mjs/SendScheduler.start().","pretty":"SendScheduler::start","meta":{"structured":1,"pretty":"SendScheduler::start","sym":"S_js_typescript_toolkit/components/telemetry/app/TelemetrySend.sys.mjs/SendScheduler.start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Toolkit/Telemetry","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/telemetry/app/TelemetrySend.sys.mjs#472"}},"S_js_typescript_toolkit/components/telemetry/tests/unit/TelemetryEnvironmentTesting.sys.mjs/lazy.Assert.":{"sym":"S_js_typescript_toolkit/components/telemetry/tests/unit/TelemetryEnvironmentTesting.sys.mjs/lazy.Assert.","pretty":"lazy::Assert","meta":{"structured":1,"pretty":"lazy::Assert","sym":"S_js_typescript_toolkit/components/telemetry/tests/unit/TelemetryEnvironmentTesting.sys.mjs/lazy.Assert.","js_sym":"#Assert","type_pretty":"\"Assert\"","kind":"field","subsystem":"Toolkit/Telemetry","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/telemetry/tests/unit/TelemetryEnvironmentTesting.sys.mjs#10"}},"S_js_typescript_toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs/Capture().prototype.start().":{"sym":"S_js_typescript_toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs/Capture().prototype.start().","pretty":"Capture::prototype::start","meta":{"structured":1,"pretty":"Capture::prototype::start","sym":"S_js_typescript_toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs/Capture().prototype.start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Firefox/New Tab Page","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs#561"}},"S_js_typescript_toolkit/components/translations/translations.d.ts/TranslationModelRecord#name.":{"sym":"S_js_typescript_toolkit/components/translations/translations.d.ts/TranslationModelRecord#name.","pretty":"TranslationModelRecord::name","meta":{"structured":1,"pretty":"TranslationModelRecord::name","sym":"S_js_typescript_toolkit/components/translations/translations.d.ts/TranslationModelRecord#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/Translations","parentsym":"S_js_typescript_toolkit/components/translations/translations.d.ts/TranslationModelRecord#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/translations/translations.d.ts#34"}},"S_js_typescript_toolkit/components/translations/translations.d.ts/WasmRecord#name.":{"sym":"S_js_typescript_toolkit/components/translations/translations.d.ts/WasmRecord#name.","pretty":"WasmRecord::name","meta":{"structured":1,"pretty":"WasmRecord::name","sym":"S_js_typescript_toolkit/components/translations/translations.d.ts/WasmRecord#name.","js_sym":"#name","type_pretty":"string","kind":"field","subsystem":"Firefox/Translations","parentsym":"S_js_typescript_toolkit/components/translations/translations.d.ts/WasmRecord#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/translations/translations.d.ts#70"}},"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterface#name().":{"sym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterface#name().","pretty":"AsyncInterface::name","meta":{"structured":1,"pretty":"AsyncInterface::name","sym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterface#name().","js_sym":"#name","type_pretty":"Promise","kind":"method","subsystem":"Toolkit/UniFFI Bindings","parentsym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterface#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterfaceInterface#name()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs#3674"}},"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterfaceInterface#name().":{"sym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterfaceInterface#name().","pretty":"AsyncInterfaceInterface::name","meta":{"structured":1,"pretty":"AsyncInterfaceInterface::name","sym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterfaceInterface#name().","js_sym":"#name","type_pretty":"Promise","kind":"method","subsystem":"Toolkit/UniFFI Bindings","parentsym":"S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterfaceInterface#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs/AsyncInterface#name()."],"variants":[]},"jumps":{"def":"toolkit/components/uniffi-bindgen-gecko-js/tests/generated/RustUniffiBindingsTests.sys.mjs#3623"}},"S_js_typescript_toolkit/content/widgets/lit-select-control.mjs/SelectControlBaseElement#focus().":{"sym":"S_js_typescript_toolkit/content/widgets/lit-select-control.mjs/SelectControlBaseElement#focus().","pretty":"SelectControlBaseElement::focus","meta":{"structured":1,"pretty":"SelectControlBaseElement::focus","sym":"S_js_typescript_toolkit/content/widgets/lit-select-control.mjs/SelectControlBaseElement#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/lit-select-control.mjs/SelectControlBaseElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLOrSVGOrMathMLElement_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/lit-select-control.mjs#110"}},"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#focus().":{"sym":"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#focus().","pretty":"MozBaseInputElement::focus","meta":{"structured":1,"pretty":"MozBaseInputElement::focus","sym":"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLOrSVGOrMathMLElement_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/lit-utils.mjs#408"}},"S_js_typescript_toolkit/content/widgets/moz-box-item/moz-box-item.mjs/MozBoxItem#focus().":{"sym":"S_js_typescript_toolkit/content/widgets/moz-box-item/moz-box-item.mjs/MozBoxItem#focus().","pretty":"MozBoxItem::focus","meta":{"structured":1,"pretty":"MozBoxItem::focus","sym":"S_js_typescript_toolkit/content/widgets/moz-box-item/moz-box-item.mjs/MozBoxItem#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/moz-box-item/moz-box-item.mjs/MozBoxItem#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/moz-box-item/moz-box-item.mjs#189"}},"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#focus().":{"sym":"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#focus().","pretty":"MozVisualPickerItem::focus","meta":{"structured":1,"pretty":"MozVisualPickerItem::focus","sym":"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs#89"}},"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#focus().":{"sym":"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#focus().","pretty":"PanelItem::focus","meta":{"structured":1,"pretty":"PanelItem::focus","sym":"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLOrSVGOrMathMLElement_focus"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLOrSVGOrMathMLElement#focus()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/panel-list/panel-list.mjs#1087"}},"S_js_typescript_toolkit/modules/FindBarContent.sys.mjs/FindBarContent#start().":{"sym":"S_js_typescript_toolkit/modules/FindBarContent.sys.mjs/FindBarContent#start().","pretty":"FindBarContent::start","meta":{"structured":1,"pretty":"FindBarContent::start","sym":"S_js_typescript_toolkit/modules/FindBarContent.sys.mjs/FindBarContent#start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Toolkit/General","parentsym":"S_js_typescript_toolkit/modules/FindBarContent.sys.mjs/FindBarContent#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/FindBarContent.sys.mjs#22"}},"S_js_typescript_toolkit/modules/FinderIterator.sys.mjs/FinderIterator#start().":{"sym":"S_js_typescript_toolkit/modules/FinderIterator.sys.mjs/FinderIterator#start().","pretty":"FinderIterator::start","meta":{"structured":1,"pretty":"FinderIterator::start","sym":"S_js_typescript_toolkit/modules/FinderIterator.sys.mjs/FinderIterator#start().","js_sym":"#start","type_pretty":"Promise<...>","kind":"method","subsystem":"Toolkit/Find Toolbar","parentsym":"S_js_typescript_toolkit/modules/FinderIterator.sys.mjs/FinderIterator#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/FinderIterator.sys.mjs#97"}},"S_js_typescript_toolkit/modules/GMPInstallManager.sys.mjs/GMPDownloader().prototype.start().":{"sym":"S_js_typescript_toolkit/modules/GMPInstallManager.sys.mjs/GMPDownloader().prototype.start().","pretty":"GMPDownloader::prototype::start","meta":{"structured":1,"pretty":"GMPDownloader::prototype::start","sym":"S_js_typescript_toolkit/modules/GMPInstallManager.sys.mjs/GMPDownloader().prototype.start().","js_sym":"#start","type_pretty":"Promise","kind":"method","subsystem":"Toolkit/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/GMPInstallManager.sys.mjs#855"}},"S_js_typescript_toolkit/modules/Integration.sys.mjs/IntegrationPoint.prototype.defineESModuleGetter().(targetObject)name.":{"sym":"S_js_typescript_toolkit/modules/Integration.sys.mjs/IntegrationPoint.prototype.defineESModuleGetter().(targetObject)name.","pretty":"targetObject::name","meta":{"structured":1,"pretty":"targetObject::name","sym":"S_js_typescript_toolkit/modules/Integration.sys.mjs/IntegrationPoint.prototype.defineESModuleGetter().(targetObject)name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"Toolkit/Async Tooling","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/Integration.sys.mjs#276"}},"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#info().":{"sym":"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#info().","pretty":"Logger::info","meta":{"structured":1,"pretty":"Logger::info","sym":"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#info().","js_sym":"#info","type_pretty":"void","kind":"method","subsystem":"Toolkit/General","parentsym":"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/Log.sys.mjs#398"}},"S_js_typescript_toolkit/modules/ObjectUtils.sys.mjs/ObjectUtils.deepEqual().":{"sym":"S_js_typescript_toolkit/modules/ObjectUtils.sys.mjs/ObjectUtils.deepEqual().","pretty":"ObjectUtils::deepEqual","meta":{"structured":1,"pretty":"ObjectUtils::deepEqual","sym":"S_js_typescript_toolkit/modules/ObjectUtils.sys.mjs/ObjectUtils.deepEqual().","js_sym":"#deepEqual","type_pretty":"boolean","kind":"method","subsystem":"Toolkit/Telemetry","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/ObjectUtils.sys.mjs#27"}},"S_js_typescript_toolkit/modules/SubDialog.sys.mjs/SubDialog().prototype.focus().":{"sym":"S_js_typescript_toolkit/modules/SubDialog.sys.mjs/SubDialog().prototype.focus().","pretty":"SubDialog::prototype::focus","meta":{"structured":1,"pretty":"SubDialog::prototype::focus","sym":"S_js_typescript_toolkit/modules/SubDialog.sys.mjs/SubDialog().prototype.focus().","js_sym":"#focus","type_pretty":"void","kind":"method","subsystem":"Toolkit/Content Prompts","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/SubDialog.sys.mjs#885"}},"S_js_typescript_toolkit/mozapps/extensions/internal/AddonSettings.sys.mjs/AddonSettings.name.":{"sym":"S_js_typescript_toolkit/mozapps/extensions/internal/AddonSettings.sys.mjs/AddonSettings.name.","pretty":"AddonSettings::name","meta":{"structured":1,"pretty":"AddonSettings::name","sym":"S_js_typescript_toolkit/mozapps/extensions/internal/AddonSettings.sys.mjs/AddonSettings.name.","js_sym":"#name","type_pretty":"any","kind":"field","subsystem":"Toolkit/Add-ons Manager","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/mozapps/extensions/internal/AddonSettings.sys.mjs#24"}},"S_js_typescript_toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs/AddonTestUtils.info().":{"sym":"S_js_typescript_toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs/AddonTestUtils.info().","pretty":"AddonTestUtils::info","meta":{"structured":1,"pretty":"AddonTestUtils::info","sym":"S_js_typescript_toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs/AddonTestUtils.info().","js_sym":"#info","type_pretty":"void","kind":"method","subsystem":"Toolkit/Add-ons Manager","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs#508"}},"S_js_typescript_toolkit/mozapps/pushnotificationhelper/PushNotificationHelper.sys.mjs/PushNotificationHelper.start().":{"sym":"S_js_typescript_toolkit/mozapps/pushnotificationhelper/PushNotificationHelper.sys.mjs/PushNotificationHelper.start().","pretty":"PushNotificationHelper::start","meta":{"structured":1,"pretty":"PushNotificationHelper::start","sym":"S_js_typescript_toolkit/mozapps/pushnotificationhelper/PushNotificationHelper.sys.mjs/PushNotificationHelper.start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Toolkit/Push Service","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/mozapps/pushnotificationhelper/PushNotificationHelper.sys.mjs#63"}},"S_js_typescript_toolkit/mozapps/pushnotificationhelper/WindowsPushNotificationHelper.sys.mjs/WindowsPushNotificationHelper.start().":{"sym":"S_js_typescript_toolkit/mozapps/pushnotificationhelper/WindowsPushNotificationHelper.sys.mjs/WindowsPushNotificationHelper.start().","pretty":"WindowsPushNotificationHelper::start","meta":{"structured":1,"pretty":"WindowsPushNotificationHelper::start","sym":"S_js_typescript_toolkit/mozapps/pushnotificationhelper/WindowsPushNotificationHelper.sys.mjs/WindowsPushNotificationHelper.start().","js_sym":"#start","type_pretty":"void","kind":"method","subsystem":"Toolkit/Push Service","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/mozapps/pushnotificationhelper/WindowsPushNotificationHelper.sys.mjs#62"}},"Services#prefs":{"sym":"Services#prefs","pretty":"Services.prefs"},"Services#scriptloader":{"sym":"Services#scriptloader","pretty":"Services.scriptloader"},"box#getBoundingClientRect":{"sym":"box#getBoundingClientRect","pretty":"box.getBoundingClientRect"},"doc#activeElement":{"sym":"doc#activeElement","pretty":"doc.activeElement"},"doc#querySelector":{"sym":"doc#querySelector","pretty":"doc.querySelector"},"end#panel":{"sym":"end#panel","pretty":"end.panel"},"end#splitter":{"sym":"end#splitter","pretty":"end.splitter"},"endBox#querySelector":{"sym":"endBox#querySelector","pretty":"endBox.querySelector"},"panel#getBoundingClientRect":{"sym":"panel#getBoundingClientRect","pretty":"panel.getBoundingClientRect"},"splitBox#name":{"sym":"splitBox#name","pretty":"splitBox.name"},"splitBox#panel":{"sym":"splitBox#panel","pretty":"splitBox.panel"},"splitBox#splitter":{"sym":"splitBox#splitter","pretty":"splitBox.splitter"},"splitter#ariaControlsElements":{"sym":"splitter#ariaControlsElements","pretty":"splitter.ariaControlsElements"},"splitter#getAttribute":{"sym":"splitter#getAttribute","pretty":"splitter.getAttribute"},"splitter#hasAttribute":{"sym":"splitter#hasAttribute","pretty":"splitter.hasAttribute"},"splitter#ownerGlobal":{"sym":"splitter#ownerGlobal","pretty":"splitter.ownerGlobal"},"start#box":{"sym":"start#box","pretty":"start.box"},"start#panel":{"sym":"start#panel","pretty":"start.panel"},"start#splitter":{"sym":"start#splitter","pretty":"start.splitter"},"startBox#querySelector":{"sym":"startBox#querySelector","pretty":"startBox.querySelector"},"toolbox#getPanel":{"sym":"toolbox#getPanel","pretty":"toolbox.getPanel"},"window#outerHeight":{"sym":"window#outerHeight","pretty":"window.outerHeight"},"window#outerWidth":{"sym":"window#outerWidth","pretty":"window.outerWidth"},"window#resizeTo":{"sym":"window#resizeTo","pretty":"window.resizeTo"}};