@gjsify/iframe 0.4.0 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,46 +1,49 @@
1
1
  {
2
- "name": "@gjsify/iframe",
3
- "version": "0.4.0",
4
- "description": "HTMLIFrameElement for GJS, backed by WebKit.WebView",
5
- "type": "module",
6
- "module": "lib/esm/index.js",
7
- "types": "lib/types/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "types": "./lib/types/index.d.ts",
11
- "default": "./lib/esm/index.js"
2
+ "name": "@gjsify/iframe",
3
+ "version": "0.4.3",
4
+ "description": "HTMLIFrameElement for GJS, backed by WebKit.WebView",
5
+ "type": "module",
6
+ "module": "lib/esm/index.js",
7
+ "types": "lib/types/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./lib/types/index.d.ts",
11
+ "default": "./lib/esm/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "lib"
16
+ ],
17
+ "scripts": {
18
+ "clear": "rm -rf lib tmp tsconfig.tsbuildinfo test.gjs.mjs || exit 0",
19
+ "check": "tsc --noEmit",
20
+ "build": "gjsify run build:gjsify && gjsify run build:types",
21
+ "build:gjsify": "gjsify build --library 'src/**/*.{ts,js}' --exclude 'src/**/*.spec.{mts,ts}' 'src/test.{mts,ts}'",
22
+ "build:types": "tsc",
23
+ "build:test": "gjsify run build:test:gjs",
24
+ "build:test:gjs": "gjsify build src/test.mts --app gjs --outfile test.gjs.mjs",
25
+ "test": "gjsify run build:gjsify && gjsify run build:test && gjsify run test:gjs",
26
+ "test:gjs": "gjsify run test.gjs.mjs"
27
+ },
28
+ "keywords": [
29
+ "gjs",
30
+ "iframe",
31
+ "webview",
32
+ "webkit",
33
+ "dom"
34
+ ],
35
+ "dependencies": {
36
+ "@girs/gjs": "4.0.0-rc.15",
37
+ "@girs/gtk-4.0": "4.23.0-4.0.0-rc.15",
38
+ "@girs/javascriptcore-6.0": "2.52.1-4.0.0-rc.15",
39
+ "@girs/webkit-6.0": "2.52.1-4.0.0-rc.15",
40
+ "@gjsify/dom-elements": "workspace:^",
41
+ "@gjsify/dom-events": "workspace:^"
42
+ },
43
+ "devDependencies": {
44
+ "@gjsify/cli": "workspace:^",
45
+ "@gjsify/unit": "workspace:^",
46
+ "@types/node": "^25.6.2",
47
+ "typescript": "^6.0.3"
12
48
  }
13
- },
14
- "scripts": {
15
- "clear": "rm -rf lib tmp tsconfig.tsbuildinfo test.gjs.mjs || exit 0",
16
- "check": "tsc --noEmit",
17
- "build": "yarn build:gjsify && yarn build:types",
18
- "build:gjsify": "gjsify build --library 'src/**/*.{ts,js}' --exclude 'src/**/*.spec.{mts,ts}' 'src/test.{mts,ts}'",
19
- "build:types": "tsc",
20
- "build:test": "yarn build:test:gjs",
21
- "build:test:gjs": "gjsify build src/test.mts --app gjs --outfile test.gjs.mjs",
22
- "test": "yarn build:gjsify && yarn build:test && yarn test:gjs",
23
- "test:gjs": "gjsify run test.gjs.mjs"
24
- },
25
- "keywords": [
26
- "gjs",
27
- "iframe",
28
- "webview",
29
- "webkit",
30
- "dom"
31
- ],
32
- "dependencies": {
33
- "@girs/gjs": "4.0.0-rc.15",
34
- "@girs/gtk-4.0": "4.23.0-4.0.0-rc.15",
35
- "@girs/javascriptcore-6.0": "2.52.1-4.0.0-rc.15",
36
- "@girs/webkit-6.0": "2.52.1-4.0.0-rc.15",
37
- "@gjsify/dom-elements": "^0.4.0",
38
- "@gjsify/dom-events": "^0.4.0"
39
- },
40
- "devDependencies": {
41
- "@gjsify/cli": "^0.4.0",
42
- "@gjsify/unit": "^0.4.0",
43
- "@types/node": "^25.6.2",
44
- "typescript": "^6.0.3"
45
- }
46
- }
49
+ }
@@ -1,177 +0,0 @@
1
- // HTMLIFrameElement for GJS — original implementation using WebKit.WebView
2
- // Reference: refs/happy-dom/packages/happy-dom/src/nodes/html-iframe-element/HTMLIFrameElement.ts
3
- // Reference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
4
-
5
- import { HTMLElement, PropertySymbol } from '@gjsify/dom-elements';
6
- import { Event } from '@gjsify/dom-events';
7
- import * as PS from './property-symbol.js';
8
-
9
- import type { IFrameWindowProxy } from './iframe-window-proxy.js';
10
-
11
- const { tagName, localName, namespaceURI } = PropertySymbol;
12
-
13
- /**
14
- * HTML IFrame Element.
15
- *
16
- * Backed by WebKit.WebView when connected to an IFrameBridge.
17
- * Without a backing widget, behaves as a pure DOM element with attribute storage.
18
- *
19
- * Reference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
20
- */
21
- export class HTMLIFrameElement extends HTMLElement {
22
- /** @internal The backing IFrameBridge (set by IFrameBridge when it creates this element) */
23
- [PS.iframeWidget]: import('./iframe-bridge.js').IFrameBridge | null = null;
24
-
25
- /** @internal The contentWindow proxy */
26
- [PS.windowProxy]: IFrameWindowProxy | null = null;
27
-
28
- /** @internal Whether content has been loaded */
29
- [PS.loaded]: boolean = false;
30
-
31
- constructor() {
32
- super();
33
- this[tagName] = 'IFRAME';
34
- this[localName] = 'iframe';
35
- this[namespaceURI] = 'http://www.w3.org/1999/xhtml';
36
- }
37
-
38
- // -- Attribute-backed string properties --
39
-
40
- get src(): string {
41
- return this.getAttribute('src') ?? '';
42
- }
43
-
44
- set src(value: string) {
45
- const old = this.getAttribute('src');
46
- this.setAttribute('src', value);
47
- if (value !== old && value && this[PS.iframeWidget]) {
48
- this[PS.iframeWidget].loadUri(value);
49
- }
50
- }
51
-
52
- get srcdoc(): string {
53
- return this.getAttribute('srcdoc') ?? '';
54
- }
55
-
56
- set srcdoc(value: string) {
57
- const old = this.getAttribute('srcdoc');
58
- this.setAttribute('srcdoc', value);
59
- if (value !== old && value && this[PS.iframeWidget]) {
60
- this[PS.iframeWidget].loadHtml(value);
61
- }
62
- }
63
-
64
- get name(): string {
65
- return this.getAttribute('name') ?? '';
66
- }
67
-
68
- set name(value: string) {
69
- this.setAttribute('name', value);
70
- }
71
-
72
- get sandbox(): string {
73
- return this.getAttribute('sandbox') ?? '';
74
- }
75
-
76
- set sandbox(value: string) {
77
- this.setAttribute('sandbox', value);
78
- }
79
-
80
- get allow(): string {
81
- return this.getAttribute('allow') ?? '';
82
- }
83
-
84
- set allow(value: string) {
85
- this.setAttribute('allow', value);
86
- }
87
-
88
- get referrerPolicy(): string {
89
- return this.getAttribute('referrerpolicy') ?? '';
90
- }
91
-
92
- set referrerPolicy(value: string) {
93
- this.setAttribute('referrerpolicy', value);
94
- }
95
-
96
- get loading(): string {
97
- const value = this.getAttribute('loading');
98
- if (value === 'lazy' || value === 'eager') return value;
99
- return 'eager';
100
- }
101
-
102
- set loading(value: string) {
103
- this.setAttribute('loading', value);
104
- }
105
-
106
- // -- Attribute-backed string properties (width/height are strings per spec) --
107
-
108
- get width(): string {
109
- return this.getAttribute('width') ?? '';
110
- }
111
-
112
- set width(value: string) {
113
- this.setAttribute('width', value);
114
- }
115
-
116
- get height(): string {
117
- return this.getAttribute('height') ?? '';
118
- }
119
-
120
- set height(value: string) {
121
- this.setAttribute('height', value);
122
- }
123
-
124
- // -- Content access --
125
-
126
- /**
127
- * Returns the window proxy for the iframe's content.
128
- * Available after the IFrameBridge has loaded content.
129
- */
130
- get contentWindow(): IFrameWindowProxy | null {
131
- return this[PS.windowProxy];
132
- }
133
-
134
- /**
135
- * Always returns null — cross-context boundary.
136
- * The WebView content runs in a separate process; direct document access
137
- * is not feasible. Use postMessage() for communication.
138
- */
139
- get contentDocument(): null {
140
- return null;
141
- }
142
-
143
- // -- Methods --
144
-
145
- /**
146
- * Returns a promise that resolves to the iframe's src URL.
147
- */
148
- getSVGDocument(): null {
149
- return null;
150
- }
151
-
152
- cloneNode(deep = false): HTMLIFrameElement {
153
- const clone = super.cloneNode(deep) as HTMLIFrameElement;
154
- // Cloned iframes are not connected to any widget
155
- clone[PS.iframeWidget] = null;
156
- clone[PS.windowProxy] = null;
157
- clone[PS.loaded] = false;
158
- return clone;
159
- }
160
-
161
- get [Symbol.toStringTag](): string {
162
- return 'HTMLIFrameElement';
163
- }
164
-
165
- // -- Internal: called by IFrameBridge --
166
-
167
- /** @internal Fire load event */
168
- _onLoad(): void {
169
- this[PS.loaded] = true;
170
- this.dispatchEvent(new Event('load'));
171
- }
172
-
173
- /** @internal Fire error event */
174
- _onError(): void {
175
- this.dispatchEvent(new Event('error'));
176
- }
177
- }
@@ -1,157 +0,0 @@
1
- // IFrameBridge — GTK container for HTMLIFrameElement backed by WebKit.WebView.
2
- // Provides a WebKit.WebView subclass that bundles all iframe bootstrapping.
3
-
4
- import GObject from 'gi://GObject';
5
- import WebKit from 'gi://WebKit?version=6.0';
6
-
7
- import { HTMLIFrameElement } from './html-iframe-element.js';
8
- import { IFrameWindowProxy } from './iframe-window-proxy.js';
9
- import { MessageBridge } from './message-bridge.js';
10
- import * as PS from './property-symbol.js';
11
-
12
- import type { IFrameBridgeOptions, IFrameReadyCallback } from './types/index.js';
13
-
14
- /**
15
- * A `WebKit.WebView` subclass that handles iframe bootstrapping:
16
- * - Sets up WebKit settings (JavaScript, developer extras)
17
- * - Creates an `HTMLIFrameElement` wrapping this WebView
18
- * - Sets up postMessage bridge for GJS ↔ WebView communication
19
- * - Fires `onReady()` callbacks with the iframe element once loaded
20
- * - `installGlobals()` sets `globalThis.HTMLIFrameElement`
21
- *
22
- * Usage:
23
- * ```ts
24
- * const iframeWidget = new IFrameBridge();
25
- * iframeWidget.installGlobals();
26
- * iframeWidget.onReady((iframe) => {
27
- * iframe.contentWindow?.addEventListener('message', (e) => {
28
- * console.log('Message from iframe:', e.data);
29
- * });
30
- * });
31
- * iframeWidget.iframeElement.src = 'https://example.com';
32
- * window.set_child(iframeWidget);
33
- * ```
34
- */
35
- export const IFrameBridge = GObject.registerClass(
36
- { GTypeName: 'GjsifyIFrameBridge' },
37
- class IFrameBridge extends WebKit.WebView {
38
- _iframe: HTMLIFrameElement;
39
- _messageBridge: MessageBridge;
40
- _readyCallbacks: IFrameReadyCallback[] = [];
41
- _options: IFrameBridgeOptions;
42
-
43
- constructor(options?: IFrameBridgeOptions & Partial<WebKit.WebView.ConstructorProps>) {
44
- const { enableDeveloperExtras, enableJavascript, ...webViewProps } = options ?? {};
45
-
46
- const userContentManager = new WebKit.UserContentManager();
47
- const settings = new WebKit.Settings();
48
- settings.enable_javascript = enableJavascript ?? true;
49
- settings.enable_developer_extras = enableDeveloperExtras ?? true;
50
-
51
- super({
52
- ...webViewProps,
53
- user_content_manager: userContentManager,
54
- settings,
55
- });
56
-
57
- this._options = { enableDeveloperExtras, enableJavascript };
58
-
59
- // Create the DOM element and link it to this widget
60
- this._iframe = new HTMLIFrameElement();
61
- this._iframe[PS.iframeWidget] = this as unknown as import('./iframe-bridge.js').IFrameBridge;
62
-
63
- // Set up the message bridge
64
- this._messageBridge = new MessageBridge(this);
65
-
66
- // Create the window proxy and connect it
67
- const windowProxy = new IFrameWindowProxy(this._messageBridge);
68
- this._iframe[PS.windowProxy] = windowProxy;
69
- this._messageBridge.setWindowProxy(windowProxy);
70
-
71
- // Track load state
72
- this.connect('load-changed', (_webView: WebKit.WebView, event: WebKit.LoadEvent) => {
73
- switch (event) {
74
- case WebKit.LoadEvent.COMMITTED: {
75
- const uri = this.get_uri();
76
- if (uri) this._messageBridge.updateUri(uri);
77
- break;
78
- }
79
- case WebKit.LoadEvent.FINISHED:
80
- this._iframe._onLoad();
81
- for (const cb of this._readyCallbacks) {
82
- cb(this._iframe as unknown as globalThis.HTMLIFrameElement);
83
- }
84
- this._readyCallbacks = [];
85
- break;
86
- }
87
- });
88
-
89
- this.connect('load-failed', () => {
90
- this._iframe._onError();
91
- return false;
92
- });
93
-
94
- this.connect('unrealize', () => {
95
- this._messageBridge.destroy();
96
- const proxy = this._iframe[PS.windowProxy];
97
- if (proxy) {
98
- proxy._close();
99
- }
100
- this._iframe[PS.iframeWidget] = null;
101
- this._iframe[PS.windowProxy] = null;
102
- });
103
- }
104
-
105
- /** The HTMLIFrameElement wrapping this WebView. */
106
- get iframeElement(): HTMLIFrameElement {
107
- return this._iframe;
108
- }
109
-
110
- /**
111
- * Register a callback to be invoked when content has loaded.
112
- * If content is already loaded, the callback fires on next load.
113
- */
114
- onReady(cb: IFrameReadyCallback): void {
115
- this._readyCallbacks.push(cb);
116
- }
117
-
118
- /**
119
- * Load a URI into the WebView.
120
- * Also updates the iframe element's src attribute.
121
- */
122
- loadUri(uri: string): void {
123
- this._iframe.setAttribute('src', uri);
124
- this.load_uri(uri);
125
- }
126
-
127
- /**
128
- * Load inline HTML into the WebView.
129
- * Also updates the iframe element's srcdoc attribute.
130
- */
131
- loadHtml(html: string, baseUri?: string): void {
132
- this._iframe.setAttribute('srcdoc', html);
133
- this.load_html(html, baseUri ?? 'about:srcdoc');
134
- }
135
-
136
- /**
137
- * Send a message to the WebView content via the standard postMessage API.
138
- * Equivalent to `this.iframeElement.contentWindow.postMessage(message, targetOrigin)`.
139
- */
140
- postMessage(message: unknown, targetOrigin = '*'): void {
141
- this._messageBridge.sendToWebView(message, targetOrigin);
142
- }
143
-
144
- /**
145
- * Set `globalThis.HTMLIFrameElement` to the gjsify implementation.
146
- */
147
- installGlobals(): void {
148
- Object.defineProperty(globalThis, 'HTMLIFrameElement', {
149
- value: HTMLIFrameElement,
150
- writable: true,
151
- configurable: true,
152
- });
153
- }
154
- },
155
- );
156
-
157
- export type IFrameBridge = InstanceType<typeof IFrameBridge>;
@@ -1,86 +0,0 @@
1
- // IFrameWindowProxy for GJS — lightweight Window proxy for iframe contentWindow
2
- // Reference: https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
3
- // Reference: refs/happy-dom/packages/happy-dom/src/window/CrossOriginBrowserWindow.ts
4
-
5
- import { EventTarget } from '@gjsify/dom-events';
6
-
7
- import type { MessageBridge } from './message-bridge.js';
8
-
9
- /**
10
- * Lightweight Window-like proxy returned by `HTMLIFrameElement.contentWindow`.
11
- *
12
- * Supports the subset of the Window API needed for cross-origin iframe communication:
13
- * - `postMessage()` for sending messages to the iframe content
14
- * - `addEventListener('message', ...)` for receiving messages from the iframe content
15
- * - `location` (read-only) reflecting the current URI
16
- * - `parent` reference to the host window
17
- * - `closed` status
18
- *
19
- * This is intentionally NOT a full BrowserWindow — just enough for standard
20
- * postMessage-based communication patterns.
21
- */
22
- export class IFrameWindowProxy extends EventTarget {
23
- private _bridge: MessageBridge;
24
- private _closed = false;
25
-
26
- constructor(bridge: MessageBridge) {
27
- super();
28
- this._bridge = bridge;
29
- }
30
-
31
- /**
32
- * Send a message to the iframe content.
33
- *
34
- * @param message - Data to send (must be JSON-serializable)
35
- * @param targetOrigin - Target origin for the message. Default: '*'
36
- */
37
- postMessage(message: unknown, targetOrigin = '*'): void {
38
- if (this._closed) return;
39
- this._bridge.sendToWebView(message, targetOrigin);
40
- }
41
-
42
- /**
43
- * Read-only location reflecting the current WebView URI.
44
- */
45
- get location(): { href: string; origin: string } {
46
- return this._bridge.getLocation();
47
- }
48
-
49
- /**
50
- * Reference to the host (parent) window — in GJS this is globalThis.
51
- */
52
- get parent(): typeof globalThis {
53
- return globalThis;
54
- }
55
-
56
- /**
57
- * Reference to the top-level window — in GJS this is globalThis.
58
- */
59
- get top(): typeof globalThis {
60
- return globalThis;
61
- }
62
-
63
- /**
64
- * The window itself (self-reference per spec).
65
- */
66
- get self(): IFrameWindowProxy {
67
- return this;
68
- }
69
-
70
- get window(): IFrameWindowProxy {
71
- return this;
72
- }
73
-
74
- get closed(): boolean {
75
- return this._closed;
76
- }
77
-
78
- /** @internal Mark as closed when the WebView is destroyed */
79
- _close(): void {
80
- this._closed = true;
81
- }
82
-
83
- get [Symbol.toStringTag](): string {
84
- return 'IFrameWindowProxy';
85
- }
86
- }
package/src/index.spec.ts DELETED
@@ -1,323 +0,0 @@
1
- // Tests for @gjsify/iframe — HTMLIFrameElement, IFrameWindowProxy, IFrameBridge
2
- // Reference: refs/happy-dom/packages/happy-dom/test/nodes/html-iframe-element/
3
-
4
- import { describe, it, expect } from '@gjsify/unit';
5
-
6
- // Import index.ts to trigger side-effect registration (Document.registerElementFactory)
7
- import { HTMLIFrameElement, IFrameWindowProxy } from './index.js';
8
- import { Document } from '@gjsify/dom-elements';
9
- import { HTMLElement, Element, Node } from '@gjsify/dom-elements';
10
- import { MessageEvent } from '@gjsify/dom-events';
11
-
12
- export default async () => {
13
- // -- HTMLIFrameElement DOM properties --
14
-
15
- await describe('HTMLIFrameElement', async () => {
16
- await it('should be an instance of HTMLElement, Element, and Node', async () => {
17
- const iframe = new HTMLIFrameElement();
18
- expect(iframe instanceof HTMLElement).toBe(true);
19
- expect(iframe instanceof Element).toBe(true);
20
- expect(iframe instanceof Node).toBe(true);
21
- });
22
-
23
- await it('should have correct tagName and localName', async () => {
24
- const iframe = new HTMLIFrameElement();
25
- expect(iframe.tagName).toBe('IFRAME');
26
- expect(iframe.localName).toBe('iframe');
27
- });
28
-
29
- await it('should have correct [Symbol.toStringTag]', async () => {
30
- const iframe = new HTMLIFrameElement();
31
- expect(Object.prototype.toString.call(iframe)).toBe('[object HTMLIFrameElement]');
32
- });
33
-
34
- // -- src --
35
-
36
- await it('should get/set src', async () => {
37
- const iframe = new HTMLIFrameElement();
38
- expect(iframe.src).toBe('');
39
- iframe.setAttribute('src', 'https://example.com');
40
- expect(iframe.src).toBe('https://example.com');
41
- });
42
-
43
- await it('should reflect src to attribute', async () => {
44
- const iframe = new HTMLIFrameElement();
45
- iframe.src = 'https://example.com';
46
- expect(iframe.getAttribute('src')).toBe('https://example.com');
47
- });
48
-
49
- // -- srcdoc --
50
-
51
- await it('should get/set srcdoc', async () => {
52
- const iframe = new HTMLIFrameElement();
53
- expect(iframe.srcdoc).toBe('');
54
- iframe.setAttribute('srcdoc', '<h1>Hello</h1>');
55
- expect(iframe.srcdoc).toBe('<h1>Hello</h1>');
56
- });
57
-
58
- await it('should reflect srcdoc to attribute', async () => {
59
- const iframe = new HTMLIFrameElement();
60
- iframe.srcdoc = '<p>test</p>';
61
- expect(iframe.getAttribute('srcdoc')).toBe('<p>test</p>');
62
- });
63
-
64
- // -- name --
65
-
66
- await it('should get/set name', async () => {
67
- const iframe = new HTMLIFrameElement();
68
- expect(iframe.name).toBe('');
69
- iframe.name = 'my-frame';
70
- expect(iframe.name).toBe('my-frame');
71
- expect(iframe.getAttribute('name')).toBe('my-frame');
72
- });
73
-
74
- // -- sandbox --
75
-
76
- await it('should get/set sandbox', async () => {
77
- const iframe = new HTMLIFrameElement();
78
- expect(iframe.sandbox).toBe('');
79
- iframe.sandbox = 'allow-scripts allow-same-origin';
80
- expect(iframe.sandbox).toBe('allow-scripts allow-same-origin');
81
- expect(iframe.getAttribute('sandbox')).toBe('allow-scripts allow-same-origin');
82
- });
83
-
84
- // -- allow --
85
-
86
- await it('should get/set allow', async () => {
87
- const iframe = new HTMLIFrameElement();
88
- expect(iframe.allow).toBe('');
89
- iframe.allow = 'fullscreen; autoplay';
90
- expect(iframe.allow).toBe('fullscreen; autoplay');
91
- expect(iframe.getAttribute('allow')).toBe('fullscreen; autoplay');
92
- });
93
-
94
- // -- referrerPolicy --
95
-
96
- await it('should get/set referrerPolicy', async () => {
97
- const iframe = new HTMLIFrameElement();
98
- expect(iframe.referrerPolicy).toBe('');
99
- iframe.referrerPolicy = 'no-referrer';
100
- expect(iframe.referrerPolicy).toBe('no-referrer');
101
- expect(iframe.getAttribute('referrerpolicy')).toBe('no-referrer');
102
- });
103
-
104
- // -- loading --
105
-
106
- await it('should get/set loading with valid values', async () => {
107
- const iframe = new HTMLIFrameElement();
108
- expect(iframe.loading).toBe('eager');
109
- iframe.loading = 'lazy';
110
- expect(iframe.loading).toBe('lazy');
111
- iframe.loading = 'eager';
112
- expect(iframe.loading).toBe('eager');
113
- });
114
-
115
- await it('should default loading to "eager" for invalid values', async () => {
116
- const iframe = new HTMLIFrameElement();
117
- iframe.loading = 'invalid';
118
- expect(iframe.loading).toBe('eager');
119
- });
120
-
121
- // -- width / height --
122
-
123
- await it('should get/set width as string', async () => {
124
- const iframe = new HTMLIFrameElement();
125
- expect(iframe.width).toBe('');
126
- iframe.width = '300';
127
- expect(iframe.width).toBe('300');
128
- expect(iframe.getAttribute('width')).toBe('300');
129
- });
130
-
131
- await it('should get/set height as string', async () => {
132
- const iframe = new HTMLIFrameElement();
133
- expect(iframe.height).toBe('');
134
- iframe.height = '200';
135
- expect(iframe.height).toBe('200');
136
- expect(iframe.getAttribute('height')).toBe('200');
137
- });
138
-
139
- // -- contentWindow / contentDocument --
140
-
141
- await it('should return null for contentWindow without backing widget', async () => {
142
- const iframe = new HTMLIFrameElement();
143
- expect(iframe.contentWindow).toBeNull();
144
- });
145
-
146
- await it('should always return null for contentDocument', async () => {
147
- const iframe = new HTMLIFrameElement();
148
- expect(iframe.contentDocument).toBeNull();
149
- });
150
-
151
- // -- Events --
152
-
153
- await it('should dispatch load event via _onLoad()', async () => {
154
- const iframe = new HTMLIFrameElement();
155
- let loaded = false;
156
- iframe.addEventListener('load', () => { loaded = true; });
157
- iframe._onLoad();
158
- expect(loaded).toBe(true);
159
- });
160
-
161
- await it('should dispatch error event via _onError()', async () => {
162
- const iframe = new HTMLIFrameElement();
163
- let errored = false;
164
- iframe.addEventListener('error', () => { errored = true; });
165
- iframe._onError();
166
- expect(errored).toBe(true);
167
- });
168
-
169
- await it('should support onload property handler', async () => {
170
- const iframe = new HTMLIFrameElement();
171
- let called = false;
172
- iframe.onload = () => { called = true; };
173
- iframe._onLoad();
174
- expect(called).toBe(true);
175
- });
176
-
177
- await it('should support onerror property handler', async () => {
178
- const iframe = new HTMLIFrameElement();
179
- let called = false;
180
- iframe.onerror = () => { called = true; };
181
- iframe._onError();
182
- expect(called).toBe(true);
183
- });
184
-
185
- // -- Clone --
186
-
187
- await it('should clone without widget reference', async () => {
188
- const iframe = new HTMLIFrameElement();
189
- iframe.src = 'https://example.com';
190
- iframe.name = 'test-frame';
191
- const clone = iframe.cloneNode(false);
192
- expect(clone instanceof HTMLIFrameElement).toBe(true);
193
- expect(clone.getAttribute('src')).toBe('https://example.com');
194
- expect(clone.getAttribute('name')).toBe('test-frame');
195
- expect(clone.contentWindow).toBeNull();
196
- });
197
-
198
- // -- getSVGDocument --
199
-
200
- await it('should return null for getSVGDocument()', async () => {
201
- const iframe = new HTMLIFrameElement();
202
- expect(iframe.getSVGDocument()).toBeNull();
203
- });
204
- });
205
-
206
- // -- Document.createElement('iframe') --
207
-
208
- await describe('Document.registerElementFactory', async () => {
209
- await it('should create HTMLIFrameElement via document.createElement', async () => {
210
- // The factory is registered as a side-effect in index.ts
211
- // which is imported by the test runner
212
- const doc = new Document();
213
- const iframe = doc.createElement('iframe');
214
- expect(iframe instanceof HTMLIFrameElement).toBe(true);
215
- expect(iframe.tagName).toBe('IFRAME');
216
- });
217
- });
218
-
219
- // -- IFrameWindowProxy (unit tests without WebView) --
220
-
221
- await describe('IFrameWindowProxy', async () => {
222
- await it('should have correct [Symbol.toStringTag]', async () => {
223
- // Create a minimal mock bridge for unit testing
224
- const mockBridge = {
225
- sendToWebView(_data: unknown, _targetOrigin: string) {},
226
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
227
- };
228
- const proxy = new IFrameWindowProxy(mockBridge as any);
229
- expect(Object.prototype.toString.call(proxy)).toBe('[object IFrameWindowProxy]');
230
- });
231
-
232
- await it('should return globalThis as parent', async () => {
233
- const mockBridge = {
234
- sendToWebView(_data: unknown, _targetOrigin: string) {},
235
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
236
- };
237
- const proxy = new IFrameWindowProxy(mockBridge as any);
238
- expect(proxy.parent).toBe(globalThis);
239
- });
240
-
241
- await it('should return globalThis as top', async () => {
242
- const mockBridge = {
243
- sendToWebView(_data: unknown, _targetOrigin: string) {},
244
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
245
- };
246
- const proxy = new IFrameWindowProxy(mockBridge as any);
247
- expect(proxy.top).toBe(globalThis);
248
- });
249
-
250
- await it('should return self references', async () => {
251
- const mockBridge = {
252
- sendToWebView(_data: unknown, _targetOrigin: string) {},
253
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
254
- };
255
- const proxy = new IFrameWindowProxy(mockBridge as any);
256
- expect(proxy.self).toBe(proxy);
257
- expect(proxy.window).toBe(proxy);
258
- });
259
-
260
- await it('should report closed status', async () => {
261
- const mockBridge = {
262
- sendToWebView(_data: unknown, _targetOrigin: string) {},
263
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
264
- };
265
- const proxy = new IFrameWindowProxy(mockBridge as any);
266
- expect(proxy.closed).toBe(false);
267
- proxy._close();
268
- expect(proxy.closed).toBe(true);
269
- });
270
-
271
- await it('should delegate postMessage to bridge', async () => {
272
- let sentData: unknown;
273
- let sentOrigin: string | undefined;
274
- const mockBridge = {
275
- sendToWebView(data: unknown, targetOrigin: string) {
276
- sentData = data;
277
- sentOrigin = targetOrigin;
278
- },
279
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
280
- };
281
- const proxy = new IFrameWindowProxy(mockBridge as any);
282
- proxy.postMessage({ hello: 'world' }, 'https://example.com');
283
- expect((sentData as any).hello).toBe('world');
284
- expect(sentOrigin).toBe('https://example.com');
285
- });
286
-
287
- await it('should not send message when closed', async () => {
288
- let called = false;
289
- const mockBridge = {
290
- sendToWebView() { called = true; },
291
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
292
- };
293
- const proxy = new IFrameWindowProxy(mockBridge as any);
294
- proxy._close();
295
- proxy.postMessage('test');
296
- expect(called).toBe(false);
297
- });
298
-
299
- await it('should return location from bridge', async () => {
300
- const mockBridge = {
301
- sendToWebView() {},
302
- getLocation() { return { href: 'https://example.com/page', origin: 'https://example.com' }; },
303
- };
304
- const proxy = new IFrameWindowProxy(mockBridge as any);
305
- expect(proxy.location.href).toBe('https://example.com/page');
306
- expect(proxy.location.origin).toBe('https://example.com');
307
- });
308
-
309
- await it('should support addEventListener for message events', async () => {
310
- const mockBridge = {
311
- sendToWebView() {},
312
- getLocation() { return { href: 'about:blank', origin: 'null' }; },
313
- };
314
- const proxy = new IFrameWindowProxy(mockBridge as any);
315
- let received: unknown;
316
- proxy.addEventListener('message', ((event: Event) => {
317
- received = (event as unknown as MessageEvent).data;
318
- }) as any);
319
- proxy.dispatchEvent(new MessageEvent('message', { data: 'hello' }));
320
- expect(received).toBe('hello');
321
- });
322
- });
323
- };
package/src/index.ts DELETED
@@ -1,24 +0,0 @@
1
- // HTMLIFrameElement for GJS — backed by WebKit.WebView
2
- // Reference: refs/happy-dom/packages/happy-dom/src/nodes/html-iframe-element/HTMLIFrameElement.ts
3
- // Reference: refs/map-editor/packages/message-channel-gjs/ (GJS ↔ WebView communication)
4
-
5
- export { HTMLIFrameElement } from './html-iframe-element.js';
6
- export { IFrameBridge } from './iframe-bridge.js';
7
- export { IFrameWindowProxy } from './iframe-window-proxy.js';
8
- export { MessageBridge } from './message-bridge.js';
9
- export type { IFrameBridgeOptions, IFrameReadyCallback, IFrameMessageData } from './types/index.js';
10
-
11
- // Side-effect: register DOM globals on import.
12
- // Same pattern as @gjsify/dom-elements and @gjsify/canvas2d.
13
- import { Document } from '@gjsify/dom-elements';
14
- import { HTMLIFrameElement } from './html-iframe-element.js';
15
-
16
- // Register so that document.createElement('iframe') works
17
- Document.registerElementFactory('iframe', () => new HTMLIFrameElement());
18
-
19
- // Register global constructor
20
- Object.defineProperty(globalThis, 'HTMLIFrameElement', {
21
- value: HTMLIFrameElement,
22
- writable: true,
23
- configurable: true,
24
- });
@@ -1,175 +0,0 @@
1
- // MessageBridge for GJS — postMessage bridge between GJS and WebKit.WebView
2
- // Adapted from refs/map-editor/packages/message-channel-gjs/src/rpc-endpoint.ts
3
- // Copyright (c) PixelRPG contributors. MIT license.
4
- // Modifications: Simplified to standard postMessage semantics (no JSON-RPC layer)
5
-
6
- import Gio from 'gi://Gio?version=2.0';
7
- import WebKit from 'gi://WebKit?version=6.0';
8
- import JavaScriptCore from 'gi://JavaScriptCore?version=6.0';
9
- import { MessageEvent } from '@gjsify/dom-events';
10
-
11
- // Promisify evaluate_javascript so it returns a Promise in GJS
12
- Gio._promisify(WebKit.WebView.prototype, 'evaluate_javascript', 'evaluate_javascript_finish');
13
-
14
- import type { IFrameWindowProxy } from './iframe-window-proxy.js';
15
- import type { IFrameMessageData } from './types/index.js';
16
-
17
- const CHANNEL_NAME = 'gjsify-iframe';
18
-
19
- /**
20
- * Bootstrap script injected into every WebView page at document start.
21
- * Provides the `window.parent.postMessage()` bridge from WebView content back to GJS.
22
- *
23
- * The script:
24
- * 1. Gets the WebKit message handler registered under CHANNEL_NAME
25
- * 2. Creates a parent proxy with a postMessage() that sends via the WebKit handler
26
- * 3. Overrides window.parent to point to the proxy
27
- */
28
- const BOOTSTRAP_SCRIPT = `(function() {
29
- var handler = window.webkit && window.webkit.messageHandlers && window.webkit.messageHandlers['${CHANNEL_NAME}'];
30
- if (!handler) return;
31
- function bridgePostMessage(data, targetOrigin) {
32
- handler.postMessage(JSON.stringify({
33
- data: data,
34
- targetOrigin: targetOrigin || '*',
35
- origin: location.origin
36
- }));
37
- }
38
- // In a WebKit.WebView loaded via srcdoc, window.parent === window (no real iframe nesting).
39
- // window.parent is [LegacyUnforgeable] — cannot be redefined with defineProperty.
40
- // Instead, override window.postMessage directly. Since window.parent === window,
41
- // calls to window.parent.postMessage() will use our override.
42
- var origPostMessage = window.postMessage;
43
- window.postMessage = function(data, targetOrigin) {
44
- bridgePostMessage(data, targetOrigin);
45
- };
46
- // Also expose on a safe namespace for explicit use
47
- window.__gjsifyBridge = { postMessage: bridgePostMessage, origPostMessage: origPostMessage };
48
- })();`;
49
-
50
- /**
51
- * Manages bidirectional postMessage communication between GJS and a WebKit.WebView.
52
- *
53
- * Direction 1 — GJS → WebView:
54
- * Uses webView.evaluate_javascript() to dispatch a MessageEvent on the WebView's window.
55
- *
56
- * Direction 2 — WebView → GJS:
57
- * Bootstrap script overrides window.parent.postMessage to call
58
- * webkit.messageHandlers[CHANNEL_NAME].postMessage(), which triggers
59
- * the UserContentManager 'script-message-received' signal in GJS.
60
- */
61
- export class MessageBridge {
62
- private _webView: WebKit.WebView;
63
- private _userContentManager: WebKit.UserContentManager;
64
- private _windowProxy: IFrameWindowProxy | null = null;
65
- private _currentUri = 'about:blank';
66
- private _signalId: number | null = null;
67
-
68
- constructor(webView: WebKit.WebView) {
69
- this._webView = webView;
70
- this._userContentManager = webView.get_user_content_manager();
71
- this._setupReceiver();
72
- this._injectBootstrapScript();
73
- }
74
-
75
- /** Connect the IFrameWindowProxy that will receive messages from the WebView */
76
- setWindowProxy(proxy: IFrameWindowProxy): void {
77
- this._windowProxy = proxy;
78
- }
79
-
80
- /** Update current URI (called by IFrameBridge on load-changed) */
81
- updateUri(uri: string): void {
82
- this._currentUri = uri;
83
- }
84
-
85
- /** Get current location info for the IFrameWindowProxy */
86
- getLocation(): { href: string; origin: string } {
87
- let origin: string;
88
- try {
89
- const url = new URL(this._currentUri);
90
- origin = url.origin;
91
- } catch {
92
- origin = 'null';
93
- }
94
- return { href: this._currentUri, origin };
95
- }
96
-
97
- /**
98
- * Send a message from GJS to the WebView content.
99
- * Dispatches a standard MessageEvent on the WebView's window object.
100
- */
101
- sendToWebView(data: unknown, _targetOrigin: string): void {
102
- const serialized = JSON.stringify(data);
103
- const origin = JSON.stringify('gjsify');
104
- // Note: do not pass `source` — WebKit's MessageEvent constructor throws TypeError
105
- // if source is not a valid MessageEventSource (Window/MessagePort/ServiceWorker)
106
- const script = `window.dispatchEvent(new MessageEvent('message', { data: JSON.parse(${JSON.stringify(serialized)}), origin: ${origin} }));`;
107
-
108
- // evaluate_javascript is async in WebKit 6.0 — fire and forget
109
- this._webView.evaluate_javascript(
110
- script,
111
- -1, // length (-1 = null-terminated)
112
- null, // world name (null = default)
113
- null, // source URI
114
- null, // cancellable
115
- ).catch(() => {
116
- // Ignore errors for fire-and-forget message dispatch
117
- });
118
- }
119
-
120
- /** Clean up signal handlers */
121
- destroy(): void {
122
- if (this._signalId !== null) {
123
- this._userContentManager.disconnect(this._signalId);
124
- this._signalId = null;
125
- }
126
- this._userContentManager.unregister_script_message_handler(CHANNEL_NAME, null);
127
- this._windowProxy = null;
128
- }
129
-
130
- /**
131
- * Set up the receiver for messages coming from the WebView.
132
- * Registers a script message handler and connects to the signal.
133
- */
134
- private _setupReceiver(): void {
135
- this._userContentManager.register_script_message_handler(CHANNEL_NAME, null);
136
-
137
- this._signalId = this._userContentManager.connect(
138
- `script-message-received::${CHANNEL_NAME}`,
139
- (_ucm: WebKit.UserContentManager, jsValue: JavaScriptCore.Value) => {
140
- if (!this._windowProxy) return;
141
-
142
- try {
143
- // The bootstrap script sends JSON.stringify({data, targetOrigin, origin})
144
- // so jsValue is a JSC string. Use to_string() to get the raw JSON.
145
- const json = jsValue.to_string();
146
- const envelope: IFrameMessageData = JSON.parse(json);
147
-
148
- // Dispatch MessageEvent on the IFrameWindowProxy
149
- const event = new MessageEvent('message', {
150
- data: envelope.data,
151
- origin: envelope.origin,
152
- });
153
- this._windowProxy.dispatchEvent(event);
154
- } catch (error) {
155
- console.error('[IFrame MessageBridge] Error processing message:', error);
156
- }
157
- },
158
- );
159
- }
160
-
161
- /**
162
- * Inject the bootstrap script into the WebView so that
163
- * window.parent.postMessage() bridges back to GJS.
164
- */
165
- private _injectBootstrapScript(): void {
166
- const script = new WebKit.UserScript(
167
- BOOTSTRAP_SCRIPT,
168
- WebKit.UserContentInjectedFrames.ALL_FRAMES,
169
- WebKit.UserScriptInjectionTime.START,
170
- null, // allow list (null = all)
171
- null, // block list (null = none)
172
- );
173
- this._userContentManager.add_script(script);
174
- }
175
- }
@@ -1,11 +0,0 @@
1
- // Iframe-specific property symbols
2
- // Follows pattern from packages/dom/dom-elements/src/property-symbol.ts
3
-
4
- // IFrameBridge (GTK WebView backing)
5
- export const iframeWidget = Symbol('iframeWidget');
6
-
7
- // IFrameWindowProxy (contentWindow)
8
- export const windowProxy = Symbol('windowProxy');
9
-
10
- // Loading state
11
- export const loaded = Symbol('loaded');
package/src/test.mts DELETED
@@ -1,6 +0,0 @@
1
-
2
- import { run } from '@gjsify/unit';
3
-
4
- import testSuite from './index.spec.js';
5
-
6
- run({ testSuite });
@@ -1,19 +0,0 @@
1
- // Shared interfaces for @gjsify/iframe
2
-
3
- /** Options passed to IFrameBridge constructor */
4
- export interface IFrameBridgeOptions {
5
- /** Enable developer extras (Web Inspector). Default: true */
6
- enableDeveloperExtras?: boolean;
7
- /** Enable JavaScript execution in the WebView. Default: true */
8
- enableJavascript?: boolean;
9
- }
10
-
11
- /** Data structure for messages crossing the GJS/WebView boundary */
12
- export interface IFrameMessageData {
13
- data: unknown;
14
- targetOrigin: string;
15
- origin: string;
16
- }
17
-
18
- /** Callback for when the IFrameBridge is ready */
19
- export type IFrameReadyCallback = (iframe: globalThis.HTMLIFrameElement) => void;
package/tmp/.tsbuildinfo DELETED
@@ -1 +0,0 @@
1
- {"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../dom/dom-elements/lib/types/property-symbol.d.ts","../../../web/dom-exception/lib/types/index.d.ts","../../../web/dom-events/lib/types/index.d.ts","../../../dom/dom-elements/lib/types/node-list.d.ts","../../../dom/dom-elements/lib/types/node.d.ts","../../../dom/dom-elements/lib/types/named-node-map.d.ts","../../../dom/dom-elements/lib/types/element.d.ts","../../../dom/dom-elements/lib/types/attr.d.ts","../../../dom/dom-elements/lib/types/character-data.d.ts","../../../dom/dom-elements/lib/types/text.d.ts","../../../dom/dom-elements/lib/types/comment.d.ts","../../../dom/dom-elements/lib/types/document-fragment.d.ts","../../../dom/dom-elements/lib/types/dom-token-list.d.ts","../../../dom/dom-elements/lib/types/html-element.d.ts","../../../dom/dom-elements/lib/types/html-canvas-element.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-ambient.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0-import.d.ts","../../../../node_modules/@girs/gjs/gettext.d.ts","../../../../node_modules/@girs/gobject-2.0/gobject-2.0-ambient.d.ts","../../../../node_modules/@girs/gobject-2.0/gobject-2.0-import.d.ts","../../../../node_modules/@girs/glib-2.0/glib-2.0-ambient.d.ts","../../../../node_modules/@girs/glib-2.0/glib-2.0-import.d.ts","../../../../node_modules/@girs/glib-2.0/glib-2.0.d.ts","../../../../node_modules/@girs/glib-2.0/index.d.ts","../../../../node_modules/@girs/gobject-2.0/gobject-2.0.d.ts","../../../../node_modules/@girs/gobject-2.0/index.d.ts","../../../../node_modules/@girs/gjs/system.d.ts","../../../../node_modules/@girs/cairo-1.0/cairo-1.0-ambient.d.ts","../../../../node_modules/@girs/cairo-1.0/cairo-1.0-import.d.ts","../../../../node_modules/@girs/cairo-1.0/cairo-1.0.d.ts","../../../../node_modules/@girs/cairo-1.0/index.d.ts","../../../../node_modules/@girs/gjs/cairo.d.ts","../../../../node_modules/@girs/gjs/console.d.ts","../../../../node_modules/@girs/gjs/gi.d.ts","../../../../node_modules/@girs/gjs/gjs-ambient.d.ts","../../../../node_modules/@girs/gjs/gjs.d.ts","../../../../node_modules/@girs/gjs/index.d.ts","../../../../node_modules/@girs/gio-2.0/gio-2.0-ambient.d.ts","../../../../node_modules/@girs/gio-2.0/gio-2.0-import.d.ts","../../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-ambient.d.ts","../../../../node_modules/@girs/gmodule-2.0/gmodule-2.0-import.d.ts","../../../../node_modules/@girs/gmodule-2.0/gmodule-2.0.d.ts","../../../../node_modules/@girs/gmodule-2.0/index.d.ts","../../../../node_modules/@girs/gio-2.0/gio-2.0.d.ts","../../../../node_modules/@girs/gio-2.0/index.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/gdkpixbuf-2.0.d.ts","../../../../node_modules/@girs/gdkpixbuf-2.0/index.d.ts","../../../dom/dom-elements/lib/types/types/i-html-image-element.d.ts","../../../dom/dom-elements/lib/types/types/predefined-color-space.d.ts","../../../dom/dom-elements/lib/types/types/image-data.d.ts","../../../dom/dom-elements/lib/types/types/index.d.ts","../../../dom/dom-elements/lib/types/html-image-element.d.ts","../../../dom/dom-elements/lib/types/html-media-element.d.ts","../../../../node_modules/@girs/gst-1.0/gst-1.0-ambient.d.ts","../../../../node_modules/@girs/gst-1.0/gst-1.0-import.d.ts","../../../../node_modules/@girs/gst-1.0/gst-1.0.d.ts","../../../../node_modules/@girs/gst-1.0/index.d.ts","../../../dom/dom-elements/lib/types/html-video-element.d.ts","../../../dom/dom-elements/lib/types/image.d.ts","../../../dom/dom-elements/lib/types/document.d.ts","../../../dom/dom-elements/lib/types/mutation-observer.d.ts","../../../dom/dom-elements/lib/types/resize-observer.d.ts","../../../dom/dom-elements/lib/types/intersection-observer.d.ts","../../../dom/dom-elements/lib/types/node-type.d.ts","../../../dom/dom-elements/lib/types/namespace-uri.d.ts","../../../dom/dom-elements/lib/types/font-face.d.ts","../../../dom/dom-elements/lib/types/match-media.d.ts","../../../dom/dom-elements/lib/types/location-stub.d.ts","../../../dom/dom-elements/lib/types/dom-matrix.d.ts","../../../dom/dom-elements/lib/types/index.d.ts","../src/property-symbol.ts","../src/types/index.ts","../src/message-bridge.ts","../src/iframe-window-proxy.ts","../src/iframe-bridge.ts","../src/html-iframe-element.ts","../../../gjs/unit/lib/types/spy.d.ts","../../../gjs/unit/lib/types/index.d.ts","../src/index.ts","../src/index.spec.ts","../../../../node_modules/@girs/gtk-4.0/gtk-4.0-import.d.ts","../../../../node_modules/@girs/gsk-4.0/gsk-4.0-ambient.d.ts","../../../../node_modules/@girs/gsk-4.0/gsk-4.0-import.d.ts","../../../../node_modules/@girs/graphene-1.0/graphene-1.0-ambient.d.ts","../../../../node_modules/@girs/graphene-1.0/graphene-1.0-import.d.ts","../../../../node_modules/@girs/graphene-1.0/graphene-1.0.d.ts","../../../../node_modules/@girs/graphene-1.0/index.d.ts","../../../../node_modules/@girs/gdk-4.0/gdk-4.0-ambient.d.ts","../../../../node_modules/@girs/gdk-4.0/gdk-4.0-import.d.ts","../../../../node_modules/@girs/pangocairo-1.0/pangocairo-1.0-ambient.d.ts","../../../../node_modules/@girs/pangocairo-1.0/pangocairo-1.0-import.d.ts","../../../../node_modules/@girs/pango-1.0/pango-1.0-ambient.d.ts","../../../../node_modules/@girs/pango-1.0/pango-1.0-import.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/harfbuzz-0.0-ambient.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/harfbuzz-0.0-import.d.ts","../../../../node_modules/@girs/freetype2-2.0/freetype2-2.0-ambient.d.ts","../../../../node_modules/@girs/freetype2-2.0/freetype2-2.0-import.d.ts","../../../../node_modules/@girs/freetype2-2.0/freetype2-2.0.d.ts","../../../../node_modules/@girs/freetype2-2.0/index.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/harfbuzz-0.0.d.ts","../../../../node_modules/@girs/harfbuzz-0.0/index.d.ts","../../../../node_modules/@girs/pango-1.0/pango-1.0.d.ts","../../../../node_modules/@girs/pango-1.0/index.d.ts","../../../../node_modules/@girs/pangocairo-1.0/pangocairo-1.0.d.ts","../../../../node_modules/@girs/pangocairo-1.0/index.d.ts","../../../../node_modules/@girs/gdk-4.0/gdk-4.0.d.ts","../../../../node_modules/@girs/gdk-4.0/index.d.ts","../../../../node_modules/@girs/gsk-4.0/gsk-4.0.d.ts","../../../../node_modules/@girs/gsk-4.0/index.d.ts","../../../../node_modules/@girs/gtk-4.0/gtk-4.0.d.ts","../../../../node_modules/@girs/gtk-4.0/index.d.ts","../../../../node_modules/@girs/gtk-4.0/gtk-4.0-ambient.d.ts","../../../../node_modules/@girs/webkit-6.0/webkit-6.0-import.d.ts","../../../../node_modules/@girs/soup-3.0/soup-3.0-ambient.d.ts","../../../../node_modules/@girs/soup-3.0/soup-3.0-import.d.ts","../../../../node_modules/@girs/soup-3.0/soup-3.0.d.ts","../../../../node_modules/@girs/soup-3.0/index.d.ts","../../../../node_modules/@girs/javascriptcore-6.0/javascriptcore-6.0-ambient.d.ts","../../../../node_modules/@girs/javascriptcore-6.0/javascriptcore-6.0-import.d.ts","../../../../node_modules/@girs/javascriptcore-6.0/javascriptcore-6.0.d.ts","../../../../node_modules/@girs/javascriptcore-6.0/index.d.ts","../../../../node_modules/@girs/webkit-6.0/webkit-6.0.d.ts","../../../../node_modules/@girs/webkit-6.0/index.d.ts","../../../../node_modules/@girs/webkit-6.0/webkit-6.0-ambient.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/@types/node/web-globals/blob.d.ts","../../../../node_modules/@types/node/web-globals/console.d.ts","../../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client-stats.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/round-robin-pool.d.ts","../../../../node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/@types/node/web-globals/performance.d.ts","../../../../node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/@types/node/web-globals/timers.d.ts","../../../../node_modules/@types/node/web-globals/url.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/@types/node/inspector/promises.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/path/posix.d.ts","../../../../node_modules/@types/node/path/win32.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/quic.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/test/reporters.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/util/types.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileIdsList":[[76,79,83,175,238,241,246,250,253,255,256,257,270],[79,83,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,175,238,241,246,250,253,255,256,257,270],[77,78,83,175,238,241,246,250,253,255,256,257,270],[83,144,147,175,238,241,246,250,253,255,256,257,270],[83,147,175,238,241,246,250,253,255,256,257,270],[74,83,85,175,238,241,246,250,253,255,256,257,270],[83,145,146,175,238,241,246,250,253,255,256,257,270],[83,136,155,175,238,241,246,250,253,255,256,257,270],[83,155,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,95,147,149,151,153,175,238,241,246,250,253,255,256,257,270],[83,137,154,175,238,241,246,250,253,255,256,257,270],[64,83,95,175,238,241,246,250,253,255,256,257,270],[83,95,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,175,238,241,246,250,253,255,256,257,270],[65,83,94,175,238,241,246,250,253,255,256,257,270],[83,86,93,175,238,241,246,250,253,255,256,257,270],[83,93,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,175,238,241,246,250,253,255,256,257,270],[83,87,92,175,238,241,246,250,253,255,256,257,270],[74,79,83,175,238,241,246,250,253,255,256,257,270],[83,175,238,241,246,250,253,255,256,257,270],[66,75,80,81,82,175,238,241,246,250,253,255,256,257,270],[66,72,74,75,80,83,175,238,241,246,250,253,255,256,257,270],[83,84,175,238,241,246,250,253,255,256,257,270],[74,83,175,238,241,246,250,253,255,256,257,270],[69,72,83,175,238,241,246,250,253,255,256,257,270],[72,83,175,238,241,246,250,253,255,256,257,270],[70,71,83,175,238,241,246,250,253,255,256,257,270],[83,88,91,175,238,241,246,250,253,255,256,257,270],[83,91,175,238,241,246,250,253,255,256,257,270],[83,89,90,175,238,241,246,250,253,255,256,257,270],[67,74,83,175,238,241,246,250,253,255,256,257,270],[72,83,85,175,238,241,246,250,253,255,256,257,270],[68,73,83,175,238,241,246,250,253,255,256,257,270],[83,132,135,175,238,241,246,250,253,255,256,257,270],[83,135,175,238,241,246,250,253,255,256,257,270],[83,133,134,175,238,241,246,250,253,255,256,257,270],[83,130,157,175,238,241,246,250,253,255,256,257,270],[83,157,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,95,135,147,149,151,153,155,175,238,241,246,250,253,255,256,257,270],[83,131,156,175,238,241,246,250,253,255,256,257,270],[83,102,105,175,238,241,246,250,253,255,256,257,270],[83,105,175,238,241,246,250,253,255,256,257,270],[83,103,104,175,238,241,246,250,253,255,256,257,270],[83,159,160,175,238,241,246,250,253,255,256,257,270],[83,159,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,95,135,147,149,151,153,155,157,175,238,241,246,250,253,255,256,257,270],[83,129,158,175,238,241,246,250,253,255,256,257,270],[83,142,149,175,238,241,246,250,253,255,256,257,270],[83,149,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,147,175,238,241,246,250,253,255,256,257,270],[83,143,148,175,238,241,246,250,253,255,256,257,270],[83,167,168,175,238,241,246,250,253,255,256,257,270],[83,166,169,175,238,241,246,250,253,255,256,257,270],[83,169,175,238,241,246,250,253,255,256,257,270],[83,141,150,175,238,241,246,250,253,255,256,257,270],[83,140,151,175,238,241,246,250,253,255,256,257,270],[83,151,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,147,149,175,238,241,246,250,253,255,256,257,270],[83,139,152,175,238,241,246,250,253,255,256,257,270],[83,138,153,175,238,241,246,250,253,255,256,257,270],[83,153,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,147,149,151,175,238,241,246,250,253,255,256,257,270],[83,163,164,175,238,241,246,250,253,255,256,257,270],[83,162,165,175,238,241,246,250,253,255,256,257,270],[83,165,175,238,241,246,250,253,255,256,257,270],[83,161,170,175,238,241,246,250,253,255,256,257,270],[83,171,172,175,238,241,246,250,253,255,256,257,270],[83,171,175,238,241,246,250,253,255,256,257,270],[72,74,83,85,91,93,95,135,147,149,151,153,155,157,159,165,169,175,238,241,246,250,253,255,256,257,270],[83,175,235,236,238,241,246,250,253,255,256,257,270],[83,175,237,238,241,246,250,253,255,256,257,270],[83,238,241,246,250,253,255,256,257,270],[83,175,238,241,246,250,253,255,256,257,270,278],[83,175,238,239,241,244,246,249,250,253,255,256,257,259,270,275,287],[83,175,238,239,240,241,246,249,250,253,255,256,257,270],[83,175,238,241,246,250,253,255,256,257,270,288],[83,175,238,241,242,243,246,250,253,255,256,257,261,270],[83,175,238,241,243,246,250,253,255,256,257,270,275,284],[83,175,238,241,244,246,249,250,253,255,256,257,259,270],[83,175,237,238,241,245,246,250,253,255,256,257,270],[83,175,238,241,246,247,250,253,255,256,257,270],[83,175,238,241,246,248,249,250,253,255,256,257,270],[83,175,237,238,241,246,249,250,253,255,256,257,270],[83,175,238,241,246,249,250,251,253,255,256,257,270,275,287],[83,175,238,241,246,249,250,251,253,255,256,257,270,275,278],[83,175,225,238,241,246,249,250,252,253,255,256,257,259,270,275,287],[83,175,238,241,246,249,250,252,253,255,256,257,259,270,275,284,287],[83,175,238,241,246,250,252,253,254,255,256,257,270,275,284,287],[83,173,174,175,176,177,178,179,180,181,182,183,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294],[83,175,238,241,246,249,250,253,255,256,257,270],[83,175,238,241,246,250,253,255,257,270],[83,175,238,241,246,250,253,255,256,257,258,270,287],[83,175,238,241,246,249,250,253,255,256,257,259,270,275],[83,175,238,241,246,250,253,255,256,257,261,270],[83,175,238,241,246,250,253,255,256,257,262,270],[83,175,238,241,246,249,250,253,255,256,257,265,270],[83,175,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294],[83,175,238,241,246,250,253,255,256,257,267,270],[83,175,238,241,246,250,253,255,256,257,268,270],[83,175,238,241,243,246,250,253,255,256,257,259,270,278],[83,175,238,241,246,249,250,253,255,256,257,270,271],[83,175,238,241,246,250,253,255,256,257,270,272,288,291],[83,175,238,241,246,249,250,253,255,256,257,270,275,277,278],[83,175,238,241,246,250,253,255,256,257,270,276,278],[83,175,238,241,246,250,253,255,256,257,270,278,288],[83,175,238,241,246,250,253,255,256,257,270,279],[83,175,235,238,241,246,250,253,255,256,257,270,275,281,287],[83,175,238,241,246,250,253,255,256,257,270,275,280],[83,175,238,241,246,249,250,253,255,256,257,270,282,283],[83,175,238,241,246,250,253,255,256,257,270,282,283],[83,175,238,241,243,246,250,253,255,256,257,259,270,275,284],[83,175,238,241,246,250,253,255,256,257,270,285],[83,175,238,241,246,250,253,255,256,257,259,270,286],[83,175,238,241,246,250,252,253,255,256,257,268,270,287],[83,175,238,241,246,250,253,255,256,257,270,288,289],[83,175,238,241,243,246,250,253,255,256,257,270,289],[83,175,238,241,246,250,253,255,256,257,270,275,290],[83,175,238,241,246,250,253,255,256,257,258,270,291],[83,175,238,241,246,250,253,255,256,257,270,292],[83,175,238,241,243,246,250,253,255,256,257,270],[83,175,225,238,241,246,250,253,255,256,257,270],[83,175,238,241,246,250,253,255,256,257,270,287],[83,175,238,241,246,250,253,255,256,257,270,293],[83,175,238,241,246,250,253,255,256,257,265,270],[83,175,238,241,246,250,253,255,256,257,270,283],[83,175,225,238,241,246,249,250,251,253,255,256,257,265,270,275,278,287,290,291,293],[83,175,238,241,246,250,253,255,256,257,270,275,294],[83,175,190,193,196,197,238,241,246,250,253,255,256,257,270,287],[83,175,193,238,241,246,250,253,255,256,257,270,275,287],[83,175,193,197,238,241,246,250,253,255,256,257,270,287],[83,175,238,241,246,250,253,255,256,257,270,275],[83,175,187,238,241,246,250,253,255,256,257,270],[83,175,191,238,241,246,250,253,255,256,257,270],[83,175,189,190,193,238,241,246,250,253,255,256,257,270,287],[83,175,238,241,246,250,253,255,256,257,259,270,284],[83,175,238,241,246,250,253,255,256,257,270,295],[83,175,187,238,241,246,250,253,255,256,257,270,295],[83,175,189,193,238,241,246,250,253,255,256,257,259,270,287],[83,175,184,185,186,188,192,238,241,246,249,250,253,255,256,257,270,275,287],[83,175,193,202,210,238,241,246,250,253,255,256,257,270],[83,175,185,191,238,241,246,250,253,255,256,257,270],[83,175,193,219,220,238,241,246,250,253,255,256,257,270],[83,175,185,188,193,238,241,246,250,253,255,256,257,270,278,287,295],[83,175,193,238,241,246,250,253,255,256,257,270],[83,175,189,193,238,241,246,250,253,255,256,257,270,287],[83,175,184,238,241,246,250,253,255,256,257,270],[83,175,187,188,189,191,192,193,194,195,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,220,221,222,223,224,238,241,246,250,253,255,256,257,270],[83,175,193,212,215,238,241,246,250,253,255,256,257,270],[83,175,193,202,203,204,238,241,246,250,253,255,256,257,270],[83,175,191,193,203,205,238,241,246,250,253,255,256,257,270],[83,175,192,238,241,246,250,253,255,256,257,270],[83,175,185,187,193,238,241,246,250,253,255,256,257,270],[83,175,193,197,203,205,238,241,246,250,253,255,256,257,270],[83,175,197,238,241,246,250,253,255,256,257,270],[83,175,191,193,196,238,241,246,250,253,255,256,257,270,287],[83,175,185,189,193,202,238,241,246,250,253,255,256,257,270],[83,175,193,212,238,241,246,250,253,255,256,257,270],[83,175,205,238,241,246,250,253,255,256,257,270],[83,175,187,193,219,238,241,246,250,253,255,256,257,270,278,293,295],[49,55,83,175,238,241,246,250,253,255,256,257,270],[53,83,175,238,241,246,250,253,255,256,257,270],[57,83,175,238,241,246,250,253,255,256,257,270],[53,55,83,175,238,241,246,250,253,255,256,257,270],[51,53,55,58,59,60,62,83,175,238,241,246,250,253,255,256,257,270],[55,83,175,238,241,246,250,253,255,256,257,270],[49,51,53,54,83,175,238,241,246,250,253,255,256,257,270],[62,83,175,238,241,246,250,253,255,256,257,270],[51,55,83,175,238,241,246,250,253,255,256,257,270],[62,83,95,99,175,238,241,246,250,253,255,256,257,270],[83,101,105,175,238,241,246,250,253,255,256,257,270],[83,100,175,238,241,246,250,253,255,256,257,270],[49,52,53,54,55,56,57,58,59,60,61,62,63,83,100,101,106,107,108,109,110,111,112,113,114,115,116,117,175,238,241,246,250,253,255,256,257,270],[51,83,175,238,241,246,250,253,255,256,257,270],[55,56,83,175,238,241,246,250,253,255,256,257,270],[49,51,52,83,175,238,241,246,250,253,255,256,257,270],[83,118,175,238,241,246,250,253,255,256,257,270],[83,97,175,238,241,246,250,253,255,256,257,270],[83,96,97,98,175,238,241,246,250,253,255,256,257,270],[51,83,118,119,122,123,175,238,241,246,250,253,255,256,257,270],[67,83,119,120,121,122,123,124,172,175,238,241,246,250,253,255,256,257,270],[51,83,121,175,238,241,246,250,253,255,256,257,270],[51,83,118,126,127,175,238,241,246,250,253,255,256,257,270],[83,118,120,121,122,123,124,175,238,241,246,250,253,255,256,257,270],[51,83,86,120,122,166,172,175,238,241,246,250,253,255,256,257,270],[83,85,125,175,238,241,246,250,253,255,256,257,270],[50,83,175,238,241,246,250,253,255,256,257,270]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"b380926f6a3b0a2c45c5556e618426cb4cf0be22152d23f652a3b94b71ef8f0d","impliedFormat":99},{"version":"e176cbd59020ce3184e68f10e5f286e027dd444e66d490fe3836118e17babf9c","impliedFormat":99},{"version":"8ff24dc5ca7e7ad39d6af837d4fb84abd2d0c5e4772422db4ede1bfd5ee5408b","impliedFormat":99},{"version":"a7f78d158629ce64fb9ec6ded6619c12223e2d66de157803007395432bc1fb19","impliedFormat":99},{"version":"5d345632b88138658798dcb90e673a491cd8c55339f43c6783f513584640e69e","impliedFormat":99},{"version":"70485b2ec94d17a98630a12518ee245d008662cff79bca26c337fbe2722c1dd3","impliedFormat":99},{"version":"c8295f442053cfd1b8abd46cd2afef7572f8b4d8c6a63dc15852819eb6f5aed4","impliedFormat":99},{"version":"ea4764182ec25bda9657dd17129ae810c237485251585ef2d1b0ae3ef81fb440","impliedFormat":99},{"version":"c054aecd9aff58d111c15e497216f4ed381608bffb25ae5f9d2abd02343c92fe","impliedFormat":99},{"version":"134a9fe6912da50ad93baf3d3ff98289d5ce7c7b7c03d934a8c8707b7440565b","impliedFormat":99},{"version":"9c664ce7b1222d9e94f260ae09341eec882bbc1f51cf33a1f4983c23ae8328b9","impliedFormat":99},{"version":"976df8e1ec0896f8b26b3fed2880208eb7c64d4cab0990dac9719b95595e9d86","impliedFormat":99},{"version":"ddcd3971864a94845a0f5fc7ba60a7c47160bac489b8ddf7b95354ce86f5b5ad","impliedFormat":99},{"version":"4d25dab2e72934457dbbabae93ede1aca077d922ddca80fd3c6c218d49192a04","impliedFormat":99},{"version":"37d3b7062ffe211f079ae3ac7357f37d4fff5c757cc209cb1a3bbd228c5d1284","impliedFormat":99},{"version":"b1e2e9e54904e429d40d5ad71dfc21efbc4c9c84bba7ed7ede5a54c930deff64","impliedFormat":99},{"version":"de851b5715c2b2e5a69e8c0d62e3fd47aee86e665cccf2572b88832b32e481a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"4936d25ba31379ce4e3d4289f6c0ea936510e111f823ec377015de6ba7047adf","impliedFormat":99},{"version":"1ffa53902f87f288dbaebc1dd9c754a0f0f1c4af2733fc7e173022209e7d4ef8","impliedFormat":99},{"version":"d7801240a49920afb07e1a83597b05a26e5e3758163a70448ba14df3f7ab5286","affectsGlobalScope":true,"impliedFormat":99},{"version":"2aed5de224f5094280addfaf59e82b362b3680083917cfa7f066c4b89cc58b74","impliedFormat":99},{"version":"86ecf772256f9205f72c768dc9b47d27b4254a64a1dd94f61c8c2f29219c24e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"f62bcd0d626998f4b14a5e4bf6c65abf4dfeaa042243dd57e4e92125fd602ed6","impliedFormat":99},{"version":"9462f849ff8d50a61639f09a8e369f7584c623a8cbcf9d99c6b81aacbca91fd2","impliedFormat":99},{"version":"6da820ee582c593971e71a933dbf54d72b47984bb11f888d225c7a8476e74790","impliedFormat":99},{"version":"048a292f9fb06d0aab8c52cabd81bc820c70d68500530afe1867c08e431d4e46","impliedFormat":99},{"version":"e2f9944677cba1c7f636dde67d7ca77982da3b52134c617bd86d3a4d8607b498","impliedFormat":99},{"version":"ceaf67c6cb2df4f38f466bd3709a72199d1d98377dcf215bf760b2a383fc73a8","impliedFormat":99},{"version":"c5f89dedf8e238012d580d16ee2286bf0681f1389f14d419c87711070430995c","affectsGlobalScope":true,"impliedFormat":99},{"version":"dc996a90baa100126e6014b2f55022930e1a44621ec68eb163f322714b7596bc","impliedFormat":99},{"version":"cdd5245a59183386c7b465ad56e2353a0a1b49c32733520ec5c0eeb718781012","impliedFormat":99},{"version":"35c6737b37a2c92e67a14ba7692f3216df6c140c28133835768f7c66cb15fa88","impliedFormat":99},{"version":"7b607f4711c496c7c4f57abddfc7b9912059e1f264417ff8f4280b65f756bf4d","impliedFormat":99},{"version":"17122ddf1e2ff9f0538a06af6edc8d2666d7e1a428239e86358afc09ac7a8779","impliedFormat":99},{"version":"2cc6a5c34041442caa16aff0686d41595296248c7c33bfac5b94cd4fe8ae20de","impliedFormat":99},{"version":"8384e3ab082eecd9d0faa07ddf7e9ff3879bfac60216e47328f799600e47ea80","affectsGlobalScope":true,"impliedFormat":99},{"version":"715e7c015d2f3f4de0da107d9be2db02b52cea3d2d446ad11d2e732848d8e3e7","impliedFormat":99},{"version":"1a7eec8977d21e8bf216ea62b836bdda1768c2a49ee689e5e09fb2f56a7837e4","impliedFormat":99},{"version":"8deb0c1eae578bb83a0056727ddec6be752d015acebfdd90f53797f8a035e57d","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0b90b2c22bda9b6a7dabfb505a7fd3896e0267ab791d63a4a37098d0829e1b0","impliedFormat":99},{"version":"d26efa37b7cbdcc391dc201683de609900869d285213abf1dcbfb5275427142f","affectsGlobalScope":true,"impliedFormat":99},{"version":"0fe0f52d9ee15bf4fbeef129a5841a706720641554be2220df52c994f343a2f1","impliedFormat":99},{"version":"586cc6c492134b4680582124d2cd7d20efe0993917871647e0000dbf670bc0da","impliedFormat":99},{"version":"eaac6969d2a0d853a8870b9ba9591b429b80f99308cc97c3fe223b54bfc4127f","impliedFormat":99},{"version":"4b8b7197750fcbfe01b0c3b0e42a18367763e07eb937e0a278a27c69489a2575","impliedFormat":99},{"version":"76bc89c9b923cdafea7abb17e6d901bab71f73278ee2793d6079839874fc301e","impliedFormat":99},{"version":"30e6e2f13e2e9eb2f1fb7187e3a9c95a6e0185ee1c5efc1b2b68a56332805cfe","impliedFormat":99},{"version":"168e7e20c00b0f5a262aebc7db45831ba353dc06ca56615a814f87be5504a55f","impliedFormat":99},{"version":"4031cdbb6a0d49564672383b7f3ddfd780d9ac3e5a089bf50889b43c4d763f27","impliedFormat":99},{"version":"8e56495924cf53cd16887d719ab11ea817e40d3cdfe7d8bdd37adb1e80fead7d","impliedFormat":99},{"version":"3121c281ad51a7f426e672fa67dfb2833745436701621d0b3a3eb8fdc80759ef","impliedFormat":99},{"version":"1ea6788e8bfcd32ef9c890c00a9bc701a2d25540f1d45822cea49db86cfd6884","impliedFormat":99},{"version":"7992945ba65363947a42f823be445492620a1939dd18760495e6fa34b519a362","impliedFormat":99},{"version":"36593e913d1d6c330fbb5813319469de4052edf78f56cae6a788207f021ae975","impliedFormat":99},{"version":"ab4b58ac8736d73e2ba66feb4d7aa78e920258ff5a1620313474f366108db243","affectsGlobalScope":true,"impliedFormat":99},{"version":"1feaa69fc54868b5a742d66fe5fea6c2c69f96a428aa13c379ab227e1c1cdbbd","impliedFormat":99},{"version":"5c227b208fc412f46976c48217b481af36527c1ebaf7db632f1d86bd3071375d","impliedFormat":99},{"version":"f272babd74a579c1532a4d68459627937bbf0a0bee176619b503a1c468a088c0","impliedFormat":99},{"version":"f5665d82041c56e501e196f1b9fe686127e2b132202d94f33b47c54ebf3db820","impliedFormat":99},{"version":"c9b1d8f3bc949ee0e4f3c6ec9eae7524eaf7f2e6b4bbd95d6e208748c94fda5f","impliedFormat":99},{"version":"cc0bf0250c33265eddf6d72f3971b664baeb66dbeffd31f081f7023918190d57","impliedFormat":99},{"version":"03c2efc96cda4526b8b37e096a01cd1a8fc3ee8f754c050cd5f379430f92ec0d","impliedFormat":99},{"version":"f7c5d98be75759b06dcf628e2f7aaca7511a961e6e99d087349265b9365c4495","impliedFormat":99},{"version":"17833ee6ac70e3946c52ab73981230cf54450c80b99fe59618457517a69bfe8a","impliedFormat":99},{"version":"55346074f99d0c3f43290a463528efc3437e0b9755582816048acea36a8bd2c6","impliedFormat":99},{"version":"0ec74a1729e91b8a6d816ecdf6de45dc795d06404dce5c9b61138b46747ad6d3","impliedFormat":99},{"version":"6c50e409125d291363e507a190fcc1c948c4cb1d1defb4b8d4cb550ac6e5a9b9","impliedFormat":99},{"version":"7ce477fa5ea770075c1338b4afb7d0cc36bab845cd8e6265c3b1adf9edf812fe","impliedFormat":99},{"version":"158125a7710f5f99a53cf29af7c6cf16669964c3dcc7ad089ba6dc3e9b2fba20","impliedFormat":99},{"version":"84c0135dbd3028b427f15dc467a997ed0815535a2e2b56dc1273953a8408d6a2","impliedFormat":99},{"version":"676eff88706ba5cd21ad727b9ee3e2743203e4aa1c96eb47bcd3e9d1c708b5e1","signature":"055a55c9feaad873e93ef77cc437b534a805f85490a8d2578800ddd745df569e","impliedFormat":99},{"version":"503388827cdf188574b12ff110315a8caca2230fcd2eba29adf56cf46a9b1ace","signature":"5b572d474d3e34666598f3d83dc751a6eed42331aff1352f3379ef19417b0d6d","impliedFormat":99},{"version":"2dfe626de4c6eaec5a4af8341d909edb4010bc340c730d45168b2a89ad387cdd","signature":"6a0905890b788c1b2c7fa278458f05be7eb5b1472c91c0160de5fa79eeedcb8e","impliedFormat":99},{"version":"b9b181465000d5f1a653ca7344a2bc87e2c25fd7e3c883b5b0fcbf8f07120b4b","signature":"0b47f9924bcd151bbf1feb189e4ec469c272e8112ec4638ec84ae586913c464d","impliedFormat":99},{"version":"ae344c65cdd3df11650e409a57ddbbd2cab8216fa11c72b4098c6e4eba028674","signature":"0cd44e6209afdc186f61279ea7061d79fbc47267a531dfbdfd090aa54067a6b3","impliedFormat":99},{"version":"5e08178839ac4b605d33cfe43b6ac6b5aca8c3ffc2ae737c407ece177f203ef9","signature":"ccc55f0859c1f816452416798447b5d1a2326b5787b76395c0848cbdebafe4c3","impliedFormat":99},{"version":"cda120f78df4c624c7fb1bd8e17343a39bfbede803f38312fb8e51fa818e1a7a","impliedFormat":99},{"version":"d9e135cc1dcf9f798edb9665b777dcad812d980a467b6ed11ce1d1bb9f017176","impliedFormat":99},{"version":"fd67dc622efab8d08c0f84d6c57922e69632d7358a7972adca51894ca77aa5cc","signature":"fea4d2afe4065977cbaae6a921ff05a735e494b3f6224e8acc6cd36e0ae84bc3","impliedFormat":99},{"version":"5505ed8a6c868ebe960ed9fc3590bd7b6b2ddc7ae663c9ed3fcec0afb8ba0d5d","signature":"fefaf643ad02c05059e06244a8291c4cb3a2693ec928c843599c25d00ee9f574","impliedFormat":99},{"version":"e3de5d75b2eb701643b234c887d4573d93a9eef5dd95eaa28b6857e5401b5845","affectsGlobalScope":true,"impliedFormat":99},{"version":"db48b51b40eb752103d40c6ed24c0538e8378a80a8d1779e2b2556d447afb624","impliedFormat":99},{"version":"3d623a7e78f2ae3ff5461a4457adc6460b8c5df771ca87df3f1ea97345d7bacf","affectsGlobalScope":true,"impliedFormat":99},{"version":"e84f9c62f5032b71469761959421882cb01cf36e3d1cdf7334d58eda3f4c51c0","impliedFormat":99},{"version":"8061480a123ba96b1f03e2857699649b8f4a3e91497b41018b7374953990f58c","affectsGlobalScope":true,"impliedFormat":99},{"version":"76e226345c56e5cfcb17d10e22fba9a05fa1bcedd6dd337af2dcd802dd90099b","impliedFormat":99},{"version":"42730078184c58641b6c33f23557261e0d9777e9569000d30d92d79f3d66311c","impliedFormat":99},{"version":"0ccd8048e81af5c0a0b1b96f4525945b4533ba968b4545e1a3ca5ceb35e1b051","impliedFormat":99},{"version":"f580b881b9c1de72e44a951d28e25cf65de14bea83bcb8469d92bd8215f99d71","affectsGlobalScope":true,"impliedFormat":99},{"version":"108535870ff2e0082886f09d85f11b1f498f5c330950f8ec203a017505129d2f","impliedFormat":99},{"version":"8c2347c07220c6e9756a8c5455fa94d1f970fb07213871585aa02dd3e1567878","affectsGlobalScope":true,"impliedFormat":99},{"version":"45a594157c568f9ca957b9e6ff512dca32dddf7d303f062b9daef0a23d8a3ef4","impliedFormat":99},{"version":"946063503e9c458405d61f37ed014d8da88d8ba6a23d40ba7bee02ddb11d3118","affectsGlobalScope":true,"impliedFormat":99},{"version":"936abf95506d4b2ba2bd07207d8c3b2db8a7cd22b32003612c47fd0450cc0bbb","impliedFormat":99},{"version":"c7c540f195c2267eda73ba33fb181c0ba323e740110b7ce21cc8f5326356d858","affectsGlobalScope":true,"impliedFormat":99},{"version":"cf576d440afc42b364e655ba3d2ebd15874ace8887a2581572289c6ac3cc8d7e","impliedFormat":99},{"version":"3d6dd2d4e9d19b1775a55bb0791823f99c8736e676bc23097cafd0fb0b03e498","affectsGlobalScope":true,"impliedFormat":99},{"version":"65d92e2956c23a313efd6a068e942e96f945644c847a801e2e1a4f4034425b59","impliedFormat":99},{"version":"72247c9d221f7f6e4368adbda5c3be438d0e08421810dbe80ca0955bd39f5470","impliedFormat":99},{"version":"bc7fef1886595bdd406568e9a4207b5e8e08f7532cb77586f903ff07c3bc8b70","impliedFormat":99},{"version":"b87000f3ca7dac986245011fe2decc2ede266bc0abc6cdf81a1e09e47099c1a8","impliedFormat":99},{"version":"7d6edaf80e5734401efe16c05acd20e0383e7631bf2d265cf7b660dc1e6a39da","impliedFormat":99},{"version":"4ca558b0ed1fa212269d38552bf33f5a8e44d89b02c317378f523f326b7c2158","impliedFormat":99},{"version":"1d4fdd9454f538ca8b76cf001240e07b0c82e7ee0390fa80c933afd46301c02e","impliedFormat":99},{"version":"c7a2d12ddbb226aa74f38c56e1923617ae6fd8e819a8678d8ff6591f1c59628f","impliedFormat":99},{"version":"b11e77ac89ddb09f97663e795a7d51bc794c88dfc952e80b31a061fb61bbdf1c","impliedFormat":99},{"version":"c0d7479627efc1e952a6b06ab69477706c38d082da33e77e017bcfaf03fb222d","impliedFormat":99},{"version":"9392d51e84e1084eddfb0904ea593aeff3ead8c0d4978d30e73f1cd4c1e5692a","impliedFormat":99},{"version":"e9a60f512b3d6923d645ff931b97c431f4df81d55ecf09b23a67af841ee92e4e","impliedFormat":99},{"version":"65210d0cd21d96a3727332f46164dcf27439a1b32ef695c2c4f67ed1b4d317e7","impliedFormat":99},{"version":"242fa6e7e4b0b73833afc9bc3a80709069d414775a4934dafe72bf72851f8e2e","impliedFormat":99},{"version":"500a44a0a23cb3b220b3ad027cf1b55561d55b5ff15e139fd8f956d15b7ce8ba","impliedFormat":99},{"version":"37e92bc0e03068f5ec1e2e23e1d62dc6f73dec8f52ef6e12d3fceae30278181f","affectsGlobalScope":true,"impliedFormat":99},{"version":"fa22bf350c00837e7cd23ca4327724e3248ec6ca7c4bf949327ec8c9027ea7d2","impliedFormat":99},{"version":"19974de001206d85ec8ca8db8b9fd7123d37cf377b3982c844056d6cc45a6f9d","affectsGlobalScope":true,"impliedFormat":99},{"version":"592213f35160abb2069476cea9d3df3848ef61fee54200d596485506a4b9ddca","impliedFormat":99},{"version":"1827dd471f0ed68561b335a146db0d7ac8f56d00c612a028f98d351f768c4325","impliedFormat":99},{"version":"026da02277e932299d064274374f8de7613824eb7da60c54038d2ec0f18d39fc","impliedFormat":99},{"version":"dee080d569355f30413dd6bc4819d4b392d7f0b5cda1d4c78eacde2d06a7ca38","affectsGlobalScope":true,"impliedFormat":99},{"version":"bc55cd705fe3763e7dc9b66bdb4bebc4117a50d3be640633fbdf9e83094afce7","impliedFormat":99},{"version":"5053607d00b29de1e3c2d40cd073a85fdd2cc25d29ce099ec4acdbfb1402d656","impliedFormat":99},{"version":"8143a157ccef0d5ca31c027203f705a1177e23e73144be68be8865ba13cbad4b","impliedFormat":99},{"version":"11825034e6d1ba3b817ceddaccf1481c581888353a93a4abdf81f25048fa5977","impliedFormat":99},{"version":"2c4d0e6278604c585a0f9692affa8401bafd450ef08c1355e548e5376d54cc65","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4137ebf04166f3a325f056aa56101adc75e9dceb30404a1844eb8604d89770e2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"07e4e61e946a9c15045539ecd5f5d2d02e7aab6fa82567826857e09cf0f37c2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c4714ccc29149efb8777a1da0b04b8d2258f5d13ddbf4cd3c3d361fb531ac86","impliedFormat":1},{"version":"3ff275f84f89f8a7c0543da838f9da9614201abc4ce74c533029825adfb4433d","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"10deca769dfed888051b1808d6746f8883a490a707f8bdf9367079146987d6d0","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"68d3f35108e2608b1f2f28b36d19d7055f31c4465cc5692cbd06c716a9fe7973","impliedFormat":1},{"version":"a6d543044570fbeed13a7f9925a868081cd2b14ef59cdd9da6ae76d41cab03d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"6f5383b3df1cdf4ff1aa7fb0850f77042b5786b5e65ec9a9b6be56ebfe4d9036","impliedFormat":1},{"version":"62fc21ed9ccbd83bd1166de277a4b5daaa8d15b5fa614c75610d20f3b73fba87","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"c77fb31bc17fd241d3922a9f88c59e3361cdf76d1328ba9412fc6bf7310b638d","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"694b812e0ed11285e8822cf8131e3ce7083a500b3b1d185fff9ed1089677bd0a","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[[119,124],127,128,160,166,172],"options":{"composite":true,"declaration":true,"declarationDir":"../lib/types","emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"../lib","preserveConstEnums":true,"removeComments":false,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":false,"target":7,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[76,1],[77,2],[78,3],[79,4],[144,5],[145,6],[146,7],[147,8],[136,9],[137,10],[154,11],[155,12],[64,13],[65,14],[94,15],[95,16],[86,17],[87,18],[92,19],[93,20],[80,21],[81,22],[66,22],[82,22],[83,23],[84,24],[85,25],[75,26],[69,27],[70,28],[71,7],[72,29],[88,30],[89,31],[90,3],[91,32],[67,33],[68,26],[73,34],[74,35],[132,36],[133,37],[134,3],[135,38],[130,39],[131,40],[156,41],[157,42],[102,43],[103,44],[104,19],[105,45],[160,46],[129,47],[158,48],[159,49],[142,50],[143,51],[148,52],[149,53],[169,54],[166,55],[167,56],[168,3],[151,57],[140,58],[141,59],[150,60],[153,61],[138,62],[139,63],[152,64],[165,65],[162,66],[163,67],[164,15],[171,68],[172,69],[161,70],[170,71],[235,72],[236,72],[237,73],[175,74],[238,75],[239,76],[240,77],[173,22],[241,78],[242,79],[243,80],[244,81],[245,82],[246,83],[247,83],[248,84],[249,85],[250,86],[251,87],[176,22],[174,22],[252,88],[253,89],[254,90],[295,91],[255,92],[256,93],[257,92],[258,94],[259,95],[261,96],[262,97],[263,97],[264,97],[265,98],[266,99],[267,100],[268,101],[269,102],[270,103],[271,103],[272,104],[273,22],[274,22],[275,105],[276,106],[277,105],[278,107],[279,108],[280,109],[281,110],[282,111],[283,112],[284,113],[285,114],[286,115],[287,116],[288,117],[289,118],[290,119],[291,120],[292,121],[177,92],[178,22],[179,22],[180,122],[181,22],[182,78],[183,22],[226,123],[227,124],[228,125],[229,125],[230,126],[231,22],[232,75],[233,127],[234,124],[293,128],[294,129],[260,22],[47,22],[48,22],[8,22],[10,22],[9,22],[2,22],[11,22],[12,22],[13,22],[14,22],[15,22],[16,22],[17,22],[18,22],[3,22],[19,22],[20,22],[4,22],[21,22],[25,22],[22,22],[23,22],[24,22],[26,22],[27,22],[28,22],[5,22],[29,22],[30,22],[31,22],[32,22],[6,22],[36,22],[33,22],[34,22],[35,22],[37,22],[7,22],[38,22],[43,22],[44,22],[39,22],[40,22],[41,22],[42,22],[45,22],[1,22],[46,22],[202,130],[214,131],[199,132],[215,133],[224,134],[190,135],[191,136],[189,137],[223,138],[218,139],[222,140],[193,141],[211,142],[192,143],[221,144],[187,145],[188,139],[194,146],[195,22],[201,147],[198,146],[185,148],[225,149],[216,150],[205,151],[204,146],[206,152],[209,153],[203,154],[207,155],[219,138],[196,156],[197,157],[210,158],[186,133],[213,159],[212,146],[200,157],[208,160],[217,22],[184,22],[220,161],[56,162],[57,163],[59,164],[60,165],[108,166],[117,22],[61,167],[55,168],[114,22],[63,169],[62,170],[100,171],[101,169],[106,172],[107,173],[118,174],[111,167],[116,22],[115,175],[109,163],[54,176],[113,22],[52,163],[112,22],[53,177],[49,22],[110,167],[58,164],[96,178],[98,179],[99,180],[97,22],[124,181],[123,182],[122,183],[128,184],[127,185],[121,186],[119,22],[120,22],[126,187],[125,22],[51,188],[50,22]],"latestChangedDtsFile":"../lib/types/index.spec.d.ts","version":"6.0.3"}
package/tsconfig.json DELETED
@@ -1,43 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "lib",
4
- "declarationDir": "lib/types",
5
- "rootDir": "src",
6
- "tsBuildInfoFile": "tmp/.tsbuildinfo",
7
- "target": "es2020",
8
- "declaration": true,
9
- "emitDeclarationOnly": true,
10
- "module": "NodeNext",
11
- "moduleResolution": "NodeNext",
12
- "esModuleInterop": true,
13
- "experimentalDecorators": true,
14
- "resolveJsonModule": true,
15
- "noUnusedLocals": true,
16
- "noUnusedParameters": true,
17
- "removeComments": false,
18
- "preserveConstEnums": true,
19
- "sourceMap": true,
20
- "skipLibCheck": true,
21
- "composite": true,
22
- "incremental": true,
23
- "types": [
24
- "node"
25
- ],
26
- "lib": [
27
- "es2015",
28
- "es2016",
29
- "es2017",
30
- "DOM"
31
- ],
32
- "strict": false
33
- },
34
- "include": [
35
- "src",
36
- "../../../node_modules/@girs/gtk-4.0/gtk-4.0-ambient.d.ts",
37
- "../../../node_modules/@girs/webkit-6.0/webkit-6.0-ambient.d.ts",
38
- "../../../node_modules/@girs/javascriptcore-6.0/javascriptcore-6.0-ambient.d.ts"
39
- ],
40
- "exclude": [
41
- "src/test.mts"
42
- ]
43
- }