@gjsify/utils 0.1.15 → 0.3.0
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/lib/esm/gio-errors.js +37 -0
- package/lib/esm/index.js +1 -0
- package/lib/esm/microtask.js +6 -0
- package/lib/esm/next-tick.js +56 -2
- package/lib/types/gio-errors.d.ts +13 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/microtask.d.ts +1 -0
- package/lib/types/next-tick.d.ts +5 -2
- package/package.json +8 -8
- package/src/gio-errors.ts +55 -0
- package/src/index.ts +1 -0
- package/src/microtask.ts +4 -0
- package/src/next-tick.spec.ts +116 -0
- package/src/next-tick.ts +104 -8
- package/src/test.ts +2 -1
- package/tsconfig.tsbuildinfo +1 -1
package/lib/esm/gio-errors.js
CHANGED
|
@@ -91,8 +91,45 @@ function isNotFoundError(err) {
|
|
|
91
91
|
const errObj = err;
|
|
92
92
|
return errObj?.code === 1 || errObj?.code === "ENOENT";
|
|
93
93
|
}
|
|
94
|
+
const GLIB_FILE_ERROR_TO_NODE = {
|
|
95
|
+
0: "EEXIST",
|
|
96
|
+
1: "EISDIR",
|
|
97
|
+
2: "EACCES",
|
|
98
|
+
3: "ENAMETOOLONG",
|
|
99
|
+
4: "ENOENT",
|
|
100
|
+
5: "ENOTDIR",
|
|
101
|
+
6: "ENXIO",
|
|
102
|
+
7: "ENODEV",
|
|
103
|
+
8: "EROFS",
|
|
104
|
+
11: "ELOOP",
|
|
105
|
+
12: "ENOSPC",
|
|
106
|
+
13: "ENOMEM",
|
|
107
|
+
14: "EMFILE",
|
|
108
|
+
15: "ENFILE",
|
|
109
|
+
16: "EBADF",
|
|
110
|
+
17: "EINVAL",
|
|
111
|
+
18: "EPIPE",
|
|
112
|
+
21: "EIO",
|
|
113
|
+
22: "EPERM",
|
|
114
|
+
24: "EIO"
|
|
115
|
+
};
|
|
116
|
+
function createGLibFileError(err, syscall, details) {
|
|
117
|
+
const errObj = err;
|
|
118
|
+
const code = GLIB_FILE_ERROR_TO_NODE[errObj?.code ?? -1] ?? "EIO";
|
|
119
|
+
let msg = `${code}: ${errObj?.message || "unknown error"}, ${syscall}`;
|
|
120
|
+
if (details?.path) msg += ` '${details.path}'`;
|
|
121
|
+
if (details?.dest) msg += ` -> '${details.dest}'`;
|
|
122
|
+
const error = new Error(msg);
|
|
123
|
+
error.code = code;
|
|
124
|
+
error.syscall = syscall;
|
|
125
|
+
error.errno = -(errObj?.code || 0);
|
|
126
|
+
if (details?.path) error.path = details.path;
|
|
127
|
+
return error;
|
|
128
|
+
}
|
|
94
129
|
export {
|
|
95
130
|
GIO_ERROR_TO_NODE,
|
|
131
|
+
GLIB_FILE_ERROR_TO_NODE,
|
|
132
|
+
createGLibFileError,
|
|
96
133
|
createNodeError,
|
|
97
134
|
isNotFoundError
|
|
98
135
|
};
|
package/lib/esm/index.js
CHANGED
|
@@ -11,6 +11,7 @@ export * from "./fs.js";
|
|
|
11
11
|
export * from "./gio.js";
|
|
12
12
|
export * from "./gio-errors.js";
|
|
13
13
|
export * from "./message.js";
|
|
14
|
+
export * from "./microtask.js";
|
|
14
15
|
export * from "./next-tick.js";
|
|
15
16
|
export * from "./path.js";
|
|
16
17
|
export * from "./structured-clone.js";
|
package/lib/esm/next-tick.js
CHANGED
|
@@ -1,6 +1,60 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
1
|
+
const CHUNK_SIZE = 64;
|
|
2
|
+
const YIELD_DELAY_MS = 1;
|
|
3
|
+
const _queue = [];
|
|
4
|
+
let _drainerArmed = false;
|
|
5
|
+
function drainOnce(GLib) {
|
|
6
|
+
const end = Math.min(CHUNK_SIZE, _queue.length);
|
|
7
|
+
for (let i = 0; i < end; i++) {
|
|
8
|
+
const cb = _queue.shift();
|
|
9
|
+
try {
|
|
10
|
+
cb();
|
|
11
|
+
} catch (err) {
|
|
12
|
+
try {
|
|
13
|
+
GLib.log_default_handler("gjsify-nextTick", GLib.LogLevelFlags.LEVEL_WARNING, String(err?.stack || err), null);
|
|
14
|
+
} catch {
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
if (_queue.length > 0) {
|
|
19
|
+
GLib.timeout_add(GLib.PRIORITY_DEFAULT, YIELD_DELAY_MS, () => {
|
|
20
|
+
drainOnce(GLib);
|
|
21
|
+
return false;
|
|
22
|
+
});
|
|
23
|
+
} else {
|
|
24
|
+
_drainerArmed = false;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function tryGLibTimeout(cb) {
|
|
28
|
+
const GLib = globalThis.imports?.gi?.GLib;
|
|
29
|
+
if (!GLib?.timeout_add) return false;
|
|
30
|
+
_queue.push(cb);
|
|
31
|
+
if (!_drainerArmed) {
|
|
32
|
+
_drainerArmed = true;
|
|
33
|
+
GLib.timeout_add(GLib.PRIORITY_DEFAULT, 0, () => {
|
|
34
|
+
drainOnce(GLib);
|
|
35
|
+
return false;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
return true;
|
|
39
|
+
}
|
|
40
|
+
function __resetBurstStateForTests() {
|
|
41
|
+
_queue.length = 0;
|
|
42
|
+
_drainerArmed = false;
|
|
43
|
+
}
|
|
44
|
+
const nextTick = (fn, ...args) => {
|
|
45
|
+
const cb = args.length > 0 ? () => fn(...args) : fn;
|
|
46
|
+
if (tryGLibTimeout(cb)) return;
|
|
47
|
+
if (typeof globalThis.process?.nextTick === "function") {
|
|
48
|
+
globalThis.process.nextTick(fn, ...args);
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
if (typeof queueMicrotask === "function") {
|
|
52
|
+
queueMicrotask(cb);
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
55
|
+
Promise.resolve().then(cb);
|
|
3
56
|
};
|
|
4
57
|
export {
|
|
58
|
+
__resetBurstStateForTests,
|
|
5
59
|
nextTick
|
|
6
60
|
};
|
|
@@ -26,3 +26,16 @@ export declare function createNodeError(err: unknown, syscall: string, details?:
|
|
|
26
26
|
* Check if a Gio error is a "not found" error.
|
|
27
27
|
*/
|
|
28
28
|
export declare function isNotFoundError(err: unknown): boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Map from GLib.FileError numeric values to Node.js error code strings.
|
|
31
|
+
* Distinct from Gio.IOErrorEnum — GLib.IOChannel.new_file() and some other
|
|
32
|
+
* low-level GLib APIs throw GLib.FileError (domain "g-file-error"), which
|
|
33
|
+
* has different numeric values than Gio.IOErrorEnum (domain "g-io-error-quark").
|
|
34
|
+
*/
|
|
35
|
+
export declare const GLIB_FILE_ERROR_TO_NODE: Record<number, string>;
|
|
36
|
+
/**
|
|
37
|
+
* Map a GLib.FileError to a Node.js-style ErrnoException. Counterpart to
|
|
38
|
+
* `createNodeError` for the Gio.IOErrorEnum case; kept separate because the
|
|
39
|
+
* enum domains differ.
|
|
40
|
+
*/
|
|
41
|
+
export declare function createGLibFileError(err: unknown, syscall: string, details?: NodeErrorDetails): ErrnoException;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './fs.js';
|
|
|
11
11
|
export * from './gio.js';
|
|
12
12
|
export * from './gio-errors.js';
|
|
13
13
|
export * from './message.js';
|
|
14
|
+
export * from './microtask.js';
|
|
14
15
|
export * from './next-tick.js';
|
|
15
16
|
export * from './path.js';
|
|
16
17
|
export * from './structured-clone.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const queueMicrotask: (fn: () => void) => void;
|
package/lib/types/next-tick.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
/** @internal Test helper: reset burst state. */
|
|
2
|
+
export declare function __resetBurstStateForTests(): void;
|
|
1
3
|
/**
|
|
2
|
-
* Schedule a function on the
|
|
3
|
-
*
|
|
4
|
+
* Schedule a function on the next turn of the event loop.
|
|
5
|
+
* On GJS: uses GLib.timeout_add(PRIORITY_DEFAULT, delay=0).
|
|
6
|
+
* On Node.js: uses process.nextTick → queueMicrotask → Promise.resolve().then().
|
|
4
7
|
*/
|
|
5
8
|
export declare const nextTick: (fn: (...args: unknown[]) => void, ...args: unknown[]) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gjsify/utils",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Utils module for gjsify",
|
|
5
5
|
"module": "lib/esm/index.js",
|
|
6
6
|
"types": "lib/types/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:test": "yarn build:test:gjs",
|
|
25
25
|
"build:test:gjs": "gjsify build src/test.ts --app gjs --outfile test.gjs.js",
|
|
26
26
|
"test": "yarn build:gjsify && yarn build:test && yarn test:gjs",
|
|
27
|
-
"test:gjs": "
|
|
27
|
+
"test:gjs": "gjsify run test.gjs.js"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"gjs",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"fs"
|
|
33
33
|
],
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@gjsify/cli": "^0.
|
|
36
|
-
"typescript": "^6.0.
|
|
35
|
+
"@gjsify/cli": "^0.3.0",
|
|
36
|
+
"typescript": "^6.0.3"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gio-2.0": "^2.88.0-4.0.0-rc.
|
|
40
|
-
"@girs/giounix-2.0": "^2.0.0-4.0.0-rc.
|
|
41
|
-
"@girs/gjs": "^4.0.0-rc.
|
|
42
|
-
"@girs/glib-2.0": "^2.88.0-4.0.0-rc.
|
|
39
|
+
"@girs/gio-2.0": "^2.88.0-4.0.0-rc.9",
|
|
40
|
+
"@girs/giounix-2.0": "^2.0.0-4.0.0-rc.9",
|
|
41
|
+
"@girs/gjs": "^4.0.0-rc.9",
|
|
42
|
+
"@girs/glib-2.0": "^2.88.0-4.0.0-rc.9"
|
|
43
43
|
}
|
|
44
44
|
}
|
package/src/gio-errors.ts
CHANGED
|
@@ -99,3 +99,58 @@ export function isNotFoundError(err: unknown): boolean {
|
|
|
99
99
|
const errObj = err as { code?: number | string } | null | undefined;
|
|
100
100
|
return errObj?.code === 1 || errObj?.code === 'ENOENT';
|
|
101
101
|
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Map from GLib.FileError numeric values to Node.js error code strings.
|
|
105
|
+
* Distinct from Gio.IOErrorEnum — GLib.IOChannel.new_file() and some other
|
|
106
|
+
* low-level GLib APIs throw GLib.FileError (domain "g-file-error"), which
|
|
107
|
+
* has different numeric values than Gio.IOErrorEnum (domain "g-io-error-quark").
|
|
108
|
+
*/
|
|
109
|
+
export const GLIB_FILE_ERROR_TO_NODE: Record<number, string> = {
|
|
110
|
+
0: 'EEXIST',
|
|
111
|
+
1: 'EISDIR',
|
|
112
|
+
2: 'EACCES',
|
|
113
|
+
3: 'ENAMETOOLONG',
|
|
114
|
+
4: 'ENOENT',
|
|
115
|
+
5: 'ENOTDIR',
|
|
116
|
+
6: 'ENXIO',
|
|
117
|
+
7: 'ENODEV',
|
|
118
|
+
8: 'EROFS',
|
|
119
|
+
11: 'ELOOP',
|
|
120
|
+
12: 'ENOSPC',
|
|
121
|
+
13: 'ENOMEM',
|
|
122
|
+
14: 'EMFILE',
|
|
123
|
+
15: 'ENFILE',
|
|
124
|
+
16: 'EBADF',
|
|
125
|
+
17: 'EINVAL',
|
|
126
|
+
18: 'EPIPE',
|
|
127
|
+
21: 'EIO',
|
|
128
|
+
22: 'EPERM',
|
|
129
|
+
24: 'EIO',
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Map a GLib.FileError to a Node.js-style ErrnoException. Counterpart to
|
|
134
|
+
* `createNodeError` for the Gio.IOErrorEnum case; kept separate because the
|
|
135
|
+
* enum domains differ.
|
|
136
|
+
*/
|
|
137
|
+
export function createGLibFileError(
|
|
138
|
+
err: unknown,
|
|
139
|
+
syscall: string,
|
|
140
|
+
details?: NodeErrorDetails,
|
|
141
|
+
): ErrnoException {
|
|
142
|
+
const errObj = err as { code?: number; message?: string } | null | undefined;
|
|
143
|
+
const code = GLIB_FILE_ERROR_TO_NODE[errObj?.code ?? -1] ?? 'EIO';
|
|
144
|
+
|
|
145
|
+
let msg = `${code}: ${errObj?.message || 'unknown error'}, ${syscall}`;
|
|
146
|
+
if (details?.path) msg += ` '${details.path}'`;
|
|
147
|
+
if (details?.dest) msg += ` -> '${details.dest}'`;
|
|
148
|
+
|
|
149
|
+
const error = new Error(msg) as ErrnoException;
|
|
150
|
+
error.code = code;
|
|
151
|
+
error.syscall = syscall;
|
|
152
|
+
error.errno = -(errObj?.code || 0);
|
|
153
|
+
if (details?.path) error.path = details.path;
|
|
154
|
+
|
|
155
|
+
return error;
|
|
156
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './fs.js';
|
|
|
11
11
|
export * from './gio.js';
|
|
12
12
|
export * from './gio-errors.js';
|
|
13
13
|
export * from './message.js';
|
|
14
|
+
export * from './microtask.js';
|
|
14
15
|
export * from './next-tick.js';
|
|
15
16
|
export * from './path.js';
|
|
16
17
|
export * from './structured-clone.js';
|
package/src/microtask.ts
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// Tests for packages/gjs/utils/src/next-tick.ts
|
|
2
|
+
// Regression: nextTick on GJS must route through GLib.idle_add(PRIORITY_HIGH_IDLE)
|
|
3
|
+
// instead of queueMicrotask, so GTK events (PRIORITY_DEFAULT = 0) can interleave
|
|
4
|
+
// between stream operations and prevent window freezes under heavy I/O.
|
|
5
|
+
|
|
6
|
+
import { describe, it, expect, on } from '@gjsify/unit';
|
|
7
|
+
import { nextTick, __resetBurstStateForTests } from './next-tick.js';
|
|
8
|
+
|
|
9
|
+
export default async () => {
|
|
10
|
+
await describe('nextTick', async () => {
|
|
11
|
+
await it('should execute the callback', async () => {
|
|
12
|
+
let called = false;
|
|
13
|
+
await new Promise<void>(resolve => {
|
|
14
|
+
nextTick(() => { called = true; resolve(); });
|
|
15
|
+
});
|
|
16
|
+
expect(called).toBeTruthy();
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
await it('should be deferred — not synchronous', async () => {
|
|
20
|
+
let ranBeforeReturn = false;
|
|
21
|
+
let scheduled = false;
|
|
22
|
+
nextTick(() => { scheduled = true; });
|
|
23
|
+
// nextTick callback must not have run before this line
|
|
24
|
+
ranBeforeReturn = scheduled;
|
|
25
|
+
// Wait for callback
|
|
26
|
+
await new Promise<void>(resolve => nextTick(resolve));
|
|
27
|
+
expect(ranBeforeReturn).toBeFalsy();
|
|
28
|
+
expect(scheduled).toBeTruthy();
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
await it('should pass arguments to the callback', async () => {
|
|
32
|
+
const result = await new Promise<string>(resolve => {
|
|
33
|
+
nextTick((a: string, b: string) => resolve(a + b), 'hello', ' world');
|
|
34
|
+
});
|
|
35
|
+
expect(result).toBe('hello world');
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
await it('should run callbacks in scheduling order', async () => {
|
|
39
|
+
const order: number[] = [];
|
|
40
|
+
await new Promise<void>(resolve => {
|
|
41
|
+
nextTick(() => order.push(1));
|
|
42
|
+
nextTick(() => order.push(2));
|
|
43
|
+
nextTick(() => { order.push(3); resolve(); });
|
|
44
|
+
});
|
|
45
|
+
// Additional tick so all three have fired
|
|
46
|
+
await new Promise<void>(resolve => nextTick(resolve));
|
|
47
|
+
expect(order[0]).toBe(1);
|
|
48
|
+
expect(order[1]).toBe(2);
|
|
49
|
+
expect(order[2]).toBe(3);
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
// GJS-specific: nextTick must use GLib.idle_add so that GLib I/O callbacks
|
|
53
|
+
// (PRIORITY_DEFAULT = 0) can fire between nextTick callbacks (PRIORITY_HIGH_IDLE = 100).
|
|
54
|
+
// We verify that a resolved Promise (microtask, highest priority) fires before
|
|
55
|
+
// a nextTick, whereas a GLib.idle_add at PRIORITY_DEFAULT fires before one at PRIORITY_HIGH_IDLE.
|
|
56
|
+
await on('Gjs', async () => {
|
|
57
|
+
await it('GJS: nextTick does not block GLib I/O callbacks (priority ordering)', async () => {
|
|
58
|
+
// A Promise.resolve microtask fires before any GLib idle (same GLib dispatch).
|
|
59
|
+
// A nextTick (GLib idle 100) must not block a higher-priority GLib source (priority 0).
|
|
60
|
+
// We test indirectly: schedule two nextTick callbacks and one via Promise.resolve().
|
|
61
|
+
// The Promise.resolve microtask runs within the current GLib dispatch (before the idle).
|
|
62
|
+
const order: string[] = [];
|
|
63
|
+
await new Promise<void>(resolve => {
|
|
64
|
+
// Schedule nextTick (GLib idle priority 100 on GJS)
|
|
65
|
+
nextTick(() => { order.push('tick'); resolve(); });
|
|
66
|
+
// Schedule a microtask (Promise.resolve runs in current dispatch, before idle)
|
|
67
|
+
Promise.resolve().then(() => order.push('microtask'));
|
|
68
|
+
});
|
|
69
|
+
// On GJS: microtask fires before GLib idle, so 'microtask' comes first
|
|
70
|
+
// On Node.js: nextTick fires before Promise.resolve microtasks by spec
|
|
71
|
+
expect(order).toContain('tick');
|
|
72
|
+
expect(order).toContain('microtask');
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
// Burst-yield behavior. When hundreds of nextTicks fire in a tight
|
|
76
|
+
// loop (webtorrent DHT bootstrap, streamx pipe bursts, …) GLib
|
|
77
|
+
// dispatches the whole batch at PRIORITY_DEFAULT before coming back
|
|
78
|
+
// to collect GTK input events — the window appears frozen. After
|
|
79
|
+
// BURST_YIELD_THRESHOLD consecutive calls within BURST_IDLE_MS, the
|
|
80
|
+
// scheduler switches to delay=1ms timeouts, forcing a main-loop
|
|
81
|
+
// iteration between bursts so GTK events can drain. Normal,
|
|
82
|
+
// non-bursty code pays zero latency because the counter resets on
|
|
83
|
+
// any gap > BURST_IDLE_MS.
|
|
84
|
+
await it('GJS: a tight burst of 256 nextTicks still completes', async () => {
|
|
85
|
+
__resetBurstStateForTests();
|
|
86
|
+
let fired = 0;
|
|
87
|
+
const target = 256;
|
|
88
|
+
await new Promise<void>(resolve => {
|
|
89
|
+
for (let i = 0; i < target; i++) {
|
|
90
|
+
nextTick(() => {
|
|
91
|
+
fired++;
|
|
92
|
+
if (fired === target) resolve();
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
expect(fired).toBe(target);
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
await it('GJS: order is preserved inside and across bursts', async () => {
|
|
100
|
+
__resetBurstStateForTests();
|
|
101
|
+
const order: number[] = [];
|
|
102
|
+
const target = 128;
|
|
103
|
+
await new Promise<void>(resolve => {
|
|
104
|
+
for (let i = 0; i < target; i++) {
|
|
105
|
+
nextTick(() => {
|
|
106
|
+
order.push(i);
|
|
107
|
+
if (order.length === target) resolve();
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
// FIFO across the whole burst, including the yield points.
|
|
112
|
+
for (let i = 0; i < target; i++) expect(order[i]).toBe(i);
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
});
|
|
116
|
+
};
|
package/src/next-tick.ts
CHANGED
|
@@ -4,13 +4,109 @@
|
|
|
4
4
|
|
|
5
5
|
declare const queueMicrotask: ((cb: () => void) => void) | undefined;
|
|
6
6
|
|
|
7
|
+
// Burst-yield scheduler. GTK input events (move, click, scroll) are dispatched
|
|
8
|
+
// from GLib's main context at PRIORITY_DEFAULT (0). Historically every nextTick
|
|
9
|
+
// became its own GLib.timeout_add(PRIORITY_DEFAULT, 0) source — ready
|
|
10
|
+
// immediately. When user code (webtorrent DHT bootstrap, streamx pipe bursts)
|
|
11
|
+
// scheduled hundreds of nextTicks in a tight loop, GLib dispatched the whole
|
|
12
|
+
// batch before cycling back to collect GTK input events, freezing the window.
|
|
13
|
+
//
|
|
14
|
+
// Instead, we maintain a FIFO queue owned by this module:
|
|
15
|
+
// • nextTick(cb) pushes onto _queue
|
|
16
|
+
// • A single GLib.timeout_add(PRIORITY_DEFAULT, 0) drains up to CHUNK_SIZE
|
|
17
|
+
// callbacks per iteration
|
|
18
|
+
// • If more remain, the drainer re-arms with delay=1ms — forcing at least
|
|
19
|
+
// one main-loop iteration before continuing, so GTK events that arrived
|
|
20
|
+
// during the chunk get dispatched
|
|
21
|
+
// • When _queue empties, the drainer goes idle (zero ambient cost)
|
|
22
|
+
//
|
|
23
|
+
// Guarantees:
|
|
24
|
+
// • FIFO: single shared queue + single drainer preserves call order
|
|
25
|
+
// • Throughput: short bursts under CHUNK_SIZE drain with zero added latency
|
|
26
|
+
// • Responsiveness: longer bursts cost at most 1ms per CHUNK_SIZE callbacks
|
|
27
|
+
// of added latency, in exchange for GTK input dispatch
|
|
28
|
+
// • GC safety: one timeout source lives while _queue is non-empty; no
|
|
29
|
+
// per-call BoxedInstance retention
|
|
30
|
+
const CHUNK_SIZE = 64;
|
|
31
|
+
const YIELD_DELAY_MS = 1;
|
|
32
|
+
const _queue: Array<() => void> = [];
|
|
33
|
+
let _drainerArmed = false;
|
|
34
|
+
|
|
35
|
+
function drainOnce(GLib: any): void {
|
|
36
|
+
// Process up to CHUNK_SIZE callbacks. Errors don't abort the queue —
|
|
37
|
+
// Node's process.nextTick guarantees later ticks still run even if an
|
|
38
|
+
// earlier one throws (the throw is delivered asynchronously via
|
|
39
|
+
// 'uncaughtException'). We keep the same contract by catching per-cb.
|
|
40
|
+
const end = Math.min(CHUNK_SIZE, _queue.length);
|
|
41
|
+
for (let i = 0; i < end; i++) {
|
|
42
|
+
const cb = _queue.shift()!;
|
|
43
|
+
try { cb(); }
|
|
44
|
+
catch (err) {
|
|
45
|
+
// Surface as an emitted error rather than swallow. In GJS there is no
|
|
46
|
+
// 'uncaughtException'; fall back to logging on stderr via GLib.
|
|
47
|
+
try { GLib.log_default_handler('gjsify-nextTick', GLib.LogLevelFlags.LEVEL_WARNING, String((err as any)?.stack || err), null); }
|
|
48
|
+
catch { /* best-effort */ }
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
if (_queue.length > 0) {
|
|
52
|
+
// More work remains — re-arm with a 1 ms yield so GTK events dispatch.
|
|
53
|
+
GLib.timeout_add(GLib.PRIORITY_DEFAULT, YIELD_DELAY_MS, () => {
|
|
54
|
+
drainOnce(GLib);
|
|
55
|
+
return false;
|
|
56
|
+
});
|
|
57
|
+
} else {
|
|
58
|
+
_drainerArmed = false;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// On GJS, nextTick goes through the GLib main loop instead of the JS
|
|
63
|
+
// microtask queue, so I/O events are interleaved between stream/pipe steps.
|
|
64
|
+
//
|
|
65
|
+
// PRIORITY_DEFAULT (0) is required: GJS 1.86 maintains an internal
|
|
66
|
+
// Promise/microtask-drain source at priority 0 that returns SOURCE_CONTINUE,
|
|
67
|
+
// permanently blocking any source at priority > 0 (including PRIORITY_HIGH_IDLE
|
|
68
|
+
// = 100) from ever dispatching. Using PRIORITY_DEFAULT ensures nextTick
|
|
69
|
+
// callbacks fire within the same GLib dispatch band as I/O events.
|
|
70
|
+
//
|
|
71
|
+
// We use GLib.timeout_add rather than GLib.idle_add: timeout_add returns a
|
|
72
|
+
// numeric source ID (no BoxedInstance, no GC race). GLib.idle_add has the same
|
|
73
|
+
// GC-race hazard as the old GLib.Source BoxedInstance approach fixed in
|
|
74
|
+
// @gjsify/node-globals timers.
|
|
75
|
+
function tryGLibTimeout(cb: () => void): boolean {
|
|
76
|
+
const GLib = (globalThis as any).imports?.gi?.GLib;
|
|
77
|
+
if (!GLib?.timeout_add) return false;
|
|
78
|
+
_queue.push(cb);
|
|
79
|
+
if (!_drainerArmed) {
|
|
80
|
+
_drainerArmed = true;
|
|
81
|
+
GLib.timeout_add(GLib.PRIORITY_DEFAULT, 0, () => {
|
|
82
|
+
drainOnce(GLib);
|
|
83
|
+
return false;
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
return true;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/** @internal Test helper: reset burst state. */
|
|
90
|
+
export function __resetBurstStateForTests(): void {
|
|
91
|
+
_queue.length = 0;
|
|
92
|
+
_drainerArmed = false;
|
|
93
|
+
}
|
|
94
|
+
|
|
7
95
|
/**
|
|
8
|
-
* Schedule a function on the
|
|
9
|
-
*
|
|
96
|
+
* Schedule a function on the next turn of the event loop.
|
|
97
|
+
* On GJS: uses GLib.timeout_add(PRIORITY_DEFAULT, delay=0).
|
|
98
|
+
* On Node.js: uses process.nextTick → queueMicrotask → Promise.resolve().then().
|
|
10
99
|
*/
|
|
11
|
-
export const nextTick
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
100
|
+
export const nextTick = (fn: (...args: unknown[]) => void, ...args: unknown[]): void => {
|
|
101
|
+
const cb = args.length > 0 ? () => fn(...args) : fn as () => void;
|
|
102
|
+
if (tryGLibTimeout(cb)) return;
|
|
103
|
+
if (typeof globalThis.process?.nextTick === 'function') {
|
|
104
|
+
globalThis.process.nextTick(fn, ...args);
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
if (typeof queueMicrotask === 'function') {
|
|
108
|
+
queueMicrotask(cb);
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
Promise.resolve().then(cb);
|
|
112
|
+
};
|
package/src/test.ts
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../node_modules/typescript/lib/lib.esnext.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.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/callable.ts","./src/base64.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/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/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/glib-2.0/glib-2.0.d.ts","../../../node_modules/@girs/glib-2.0/index.d.ts","./src/byte-array.ts","./src/cli.ts","./src/defer.ts","./src/encoding.ts","./src/globals.ts","./src/error.ts","./src/file.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/giounix-2.0/giounix-2.0-ambient.d.ts","../../../node_modules/@girs/giounix-2.0/giounix-2.0-import.d.ts","../../../node_modules/@girs/giounix-2.0/giounix-2.0.d.ts","../../../node_modules/@girs/giounix-2.0/index.d.ts","./src/fs.ts","./src/gio.ts","./src/gio-errors.ts","./src/message.ts","./src/next-tick.ts","./src/path.ts","./src/structured-clone.ts","./src/main-loop.ts","./src/index.ts","../../../node_modules/@girs/gjs/dom.d.ts"],"fileIdsList":[[98,101],[101],[96,107,109],[99,100],[117,124],[124],[96,107,109,122],[118,123],[125,128],[128],[96,107,109,122,124],[126,127],[96,101],[96,109],[92,97,102,103,104],[92,96,97,102,109],[106],[96],[90,109],[109],[96,107],[91,108],[119,122],[122],[120,121],[93,96],[107,109],[94,95],[124,128],[109,124],[88,89,110,111,112,113,114,115,116,129,130,131,132,133,134,135,136]],"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":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","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":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b00159041ddc439a199e53df5339f0583d31b63c5e1acf19b0ff6f12f8b4623","signature":"d2e00d708f8db8281e83b0966bb384491deccea1a1fecdf2e6cf600d8fdeda80","impliedFormat":99},{"version":"20abcc37a8c39848767fcc645d73b9a6d42db0d83d8702198b27e850317f4b49","signature":"004cd7c170c88793a62f0b831a52c8bec5835581048d81ec483105bb6fb569c8","impliedFormat":99},{"version":"8c9787aadb580199528c52892a52d65cf5681cbf431f50c387b4452d830e8260","impliedFormat":99},{"version":"6e9045bc4cb132b149dac58eeb9689f1fdb2b2b356ebbf02b93912b7a0fdbc25","affectsGlobalScope":true,"impliedFormat":99},{"version":"2085382b07f3cd64087a991b6becb50133f01238539acfd02b4056a94a5ebb9d","impliedFormat":99},{"version":"db35eb1245b36fd3ff663811086d15cb8c68f3b3dc5f5f831db3b0eefbcb033c","impliedFormat":99},{"version":"0f3c61a292d85a2e818df1f9a7c7f37846cb1a6a3a4ecf7894f8a738d4bdb192","affectsGlobalScope":true,"impliedFormat":99},{"version":"e4c5e0aa906bc9b10b24aeba0b033a49d5742eab0704fe196800e8a4000c1e2e","impliedFormat":99},{"version":"86a89e907573f6d3c8ddab189817f10eff6b0c42ec08c485888d5e8b2efa1e2c","impliedFormat":99},{"version":"e73f713456ae34abd233f29196aa99fdf404cb91164c5122bc19a3d719047cd2","impliedFormat":99},{"version":"54c3513e44305cbe56ef433417d9e42104cdc317a63c43ecf72a1849ee69ccc2","impliedFormat":99},{"version":"7b0dc352c423e02893e3dbefdc5172f227c7638cd40c35c4b1b77af3008613de","affectsGlobalScope":true,"impliedFormat":99},{"version":"58fd9932dca08c73d5749118cd28214224c589fc48b41202f9ce0b5ba1423fb6","impliedFormat":99},{"version":"0add61f82f10b4bb3bf837edda13915a643fa650f577e79a03be219c656f9e18","impliedFormat":99},{"version":"4db1053ff2a3a26c56ec68803986fb9a2de7ecb26d6252e1d4b719c48398f799","impliedFormat":99},{"version":"c1bf15bba38171793cfc7112559b1714b0bcb9f79477e012dffc4bb0ef2292a1","impliedFormat":99},{"version":"6922180d916be5ec823dd103ec60bf1ec48bded8e53194a760831a877a7cff0f","impliedFormat":99},{"version":"d0cd0ed5ad50d765e2e30fd7a45ce1b054cce85ff8235d19bbe45152acd32a08","impliedFormat":99},{"version":"7a61ece44b95f226c4166f48ed58e90a7b76242588293c52bb45bd74368c7559","affectsGlobalScope":true,"impliedFormat":99},{"version":"8dd968f41e49b2b0514d16baa1199620746dd6e8017accbea9a39a4b0c2a9d28","impliedFormat":99},{"version":"cdf6e449238a7637123d566eec976dd24b21f5c7caaef7a2c04ee9186ee5589e","impliedFormat":99},{"version":"a1eeac57c42f81587bdb5ba17781055a64913a1b6896752b5b9e45ba007577a2","impliedFormat":99},{"version":"b914609f1e239e89a080ab7f5ff72594deb7cde2e9747eac1a8095593ffb4ba9","signature":"55aac1cafba7e50f99fb9e8628a7f634e8354534e96ea8585821215c87de20be","impliedFormat":99},{"version":"4fb51536d048114117c829bb5f4f5846f3988bbda16f57326507323fe19888a6","signature":"f88f71f98c5b98896efe89d3a38dc6ec813b7e08d168f1006c4973839d77ca08","impliedFormat":99},{"version":"e3e990113befca442516787f1b0c38345ce97b6424711b8082d890659c88d9d3","signature":"b76aa9f47943110ec585bb2b743aecb6f000377700923632f0db301482bdd73c","impliedFormat":99},{"version":"c2b69bbc1bbf79f09e72e69716aaddc83142a04e57bf30c673570aaabd5384e8","signature":"af1988260c49b37553045ea830586a7aeb8e442f20579ee17b5a2ac26141ad6c","impliedFormat":99},{"version":"acb02c911ca0e588841b120e519904adb79fe7dacc55d16bc6cdd2e02e15c1b4","signature":"bcd5f304d453dd40284c9645b5de54e0d8c8df0f3d80f53d664d3f99782d0ef5","impliedFormat":99},{"version":"6f173d4e758b7ff70a3e0b3b2906869970cd23559eb6f19bfd6caa395e8e6f51","signature":"a7298076563ec3132348662dacd7512b67a8564714460cf092a0211bcca5ee20","impliedFormat":99},{"version":"90bf7a0f6125cfb40e3b9c1f5f471a235bc92c9a0bf9934a996648e5861e70c9","signature":"c99b7291b92920c8990726218d15eb170e32f6d74c63b7a020f0812f8546d288","impliedFormat":99},{"version":"21ab021acdc50115128766fc952cb9265bbe1e878a6e6712f7999cfcdd3bfbba","impliedFormat":99},{"version":"a67623830d36a6c76f01ce2b51ca3206fb07de66d89b364837eb0fdb901de445","affectsGlobalScope":true,"impliedFormat":99},{"version":"090eb5c7c46bcebe0fdde327c76833c56f3f5503fa2c9b34a908c88ac3536ee6","impliedFormat":99},{"version":"54ac9f13e2b5a9bf9c0a2ceec8135b290d6d5f1b7623f2297f3e7e7f66da5aea","affectsGlobalScope":true,"impliedFormat":99},{"version":"a8fe8ba4b9226110a43330bc743d98e3e3af394e50f018dae034d11821a4b598","impliedFormat":99},{"version":"75fdff836de566cceca1fd40f365af854fbd8139e0fb33a191f8d087c9e43d90","impliedFormat":99},{"version":"e5aa42191a1c25748ddb35ed2922af45712fb80ddf86e1e09733be281c125468","impliedFormat":99},{"version":"981e32c1ee850a697091171963411a0a940d5c1fa1fe3ea88fb9ea7c0f841bd1","impliedFormat":99},{"version":"775315594ac4d695b64fa125e1de049e3996ef407ca155fd8ff953a51ce0f8ce","impliedFormat":99},{"version":"b7849794cd7aedbd872d7dcd7979835dfb8c78c0d6d2fe86ca945c6094dd98c9","affectsGlobalScope":true,"impliedFormat":99},{"version":"9fa1d59924d2758b9afc915ad828c31c1393972800c758eb9261f540017197ff","impliedFormat":99},{"version":"06e59779655de7c08fc8ab13b136dcdbe74d3409d4c8578df5598c4b2ee4299c","impliedFormat":99},{"version":"b5fc3758badb6cba6058263b5ecbeef42bc4facd91e0c22f5b67bd9cbf6f3c38","signature":"1981a715841b053d196bd2fa7094a40e443550be04387c5bd61bd987c862a8c1","impliedFormat":99},{"version":"f443edf6e3ec017a14d0548b99e633d275550f30c992b11e637b58f06d81a873","signature":"2b9a95c45751bab93ad8f47330f6e9ca44fe49484c34678f186994e92c539819","impliedFormat":99},{"version":"b436ddafc0833ee5f53d66902474ca45e40a959290349d8252911dddf0f7f5dc","signature":"a14f06f88503879efda49e5b1b68c5a9fea51038e587450067d74c50609f0fd1","impliedFormat":99},{"version":"3ed8aa2be77f350abf0e3187f5a741705e574fc096ed17f2272f541fc1c2b174","signature":"49243f7ff940e6fa2bb1064e9db8579284331ebfdbbc40afa4c5579c11daed12","impliedFormat":99},{"version":"4a03e93453dd18383df6d45b37ea2c349f46e7098e38d25476f9cc7206c4bb88","signature":"4166644865115049a8c122b6061e4af2a7df86f4062a6ea9cd33c418a8fc1e48","impliedFormat":99},{"version":"aee9b6d84ee4c14f2d1606405b03f7d0b369e28a17014fb9eeef93eb30d84b66","signature":"0f633f56c3e62663502f33a45c9e05f06c638e00f949bbaa3efcb6623af1f910","impliedFormat":99},{"version":"56e8e992ec36beb9914f6d9a3c61b375e22aa9732f97ab43bd451f2f6ee9ea36","signature":"19764f46f5f49e9c0426e38e477f1ca75748f93e7314ff91fa92e4fd63df3eb8","impliedFormat":99},{"version":"330dd85a3b1d85485f78513f70b5ff7367e2b96b00278f140d5de0c263f0cef0","signature":"3978e1a4e65d355befa56b48fece71e9cee3985f568ad88de880a9ebc336b03a","impliedFormat":99},{"version":"f2d3c2ceb06635750cda321b2e34cec307784430add0e57a89b784926305dc67","impliedFormat":99},{"version":"fec18a4e0ddcf74bec40eb2ac2ed0b2b0060bfcd407a46fb1d18edd5a03a5085","affectsGlobalScope":true,"impliedFormat":99}],"root":[88,89,106,[110,116],[129,138]],"options":{"allowJs":true,"checkJs":false,"composite":true,"declaration":true,"declarationDir":"./lib/types","emitDeclarationOnly":true,"experimentalDecorators":true,"module":199,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":false,"target":99},"referencedMap":[[98,1],[99,2],[100,3],[101,4],[117,5],[118,6],[123,7],[124,8],[125,9],[126,10],[127,11],[128,12],[102,13],[138,14],[105,15],[106,16],[107,17],[97,18],[90,19],[91,20],[108,21],[109,22],[119,23],[120,24],[121,3],[122,25],[93,26],[94,18],[95,27],[96,28],[110,20],[111,20],[116,20],[129,29],[130,30],[137,31],[136,20],[134,30]],"latestChangedDtsFile":"./lib/types/index.d.ts","version":"6.0.2"}
|
|
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.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../node_modules/typescript/lib/lib.esnext.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.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","./src/callable.ts","./src/base64.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/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/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/glib-2.0/glib-2.0.d.ts","../../../node_modules/@girs/glib-2.0/index.d.ts","./src/byte-array.ts","./src/cli.ts","./src/defer.ts","./src/encoding.ts","./src/globals.ts","./src/error.ts","./src/file.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/giounix-2.0/giounix-2.0-ambient.d.ts","../../../node_modules/@girs/giounix-2.0/giounix-2.0-import.d.ts","../../../node_modules/@girs/giounix-2.0/giounix-2.0.d.ts","../../../node_modules/@girs/giounix-2.0/index.d.ts","./src/fs.ts","./src/gio.ts","./src/gio-errors.ts","./src/message.ts","./src/microtask.ts","./src/next-tick.ts","./src/path.ts","./src/structured-clone.ts","./src/main-loop.ts","./src/index.ts","../../../node_modules/@girs/gjs/dom.d.ts"],"fileIdsList":[[98,101],[101],[96,107,109],[99,100],[117,124],[124],[96,107,109,122],[118,123],[125,128],[128],[96,107,109,122,124],[126,127],[96,101],[96,109],[92,97,102,103,104],[92,96,97,102,109],[106],[96],[90,109],[109],[96,107],[91,108],[119,122],[122],[120,121],[93,96],[107,109],[94,95],[124,128],[109,124],[88,89,110,111,112,113,114,115,116,129,130,131,132,133,134,135,136,137]],"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":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","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":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b00159041ddc439a199e53df5339f0583d31b63c5e1acf19b0ff6f12f8b4623","signature":"d2e00d708f8db8281e83b0966bb384491deccea1a1fecdf2e6cf600d8fdeda80","impliedFormat":99},{"version":"20abcc37a8c39848767fcc645d73b9a6d42db0d83d8702198b27e850317f4b49","signature":"004cd7c170c88793a62f0b831a52c8bec5835581048d81ec483105bb6fb569c8","impliedFormat":99},{"version":"2aed5de224f5094280addfaf59e82b362b3680083917cfa7f066c4b89cc58b74","impliedFormat":99},{"version":"86ecf772256f9205f72c768dc9b47d27b4254a64a1dd94f61c8c2f29219c24e1","affectsGlobalScope":true,"impliedFormat":99},{"version":"4936d25ba31379ce4e3d4289f6c0ea936510e111f823ec377015de6ba7047adf","impliedFormat":99},{"version":"1ffa53902f87f288dbaebc1dd9c754a0f0f1c4af2733fc7e173022209e7d4ef8","impliedFormat":99},{"version":"d7801240a49920afb07e1a83597b05a26e5e3758163a70448ba14df3f7ab5286","affectsGlobalScope":true,"impliedFormat":99},{"version":"e5d6263a1445260454a107fff13a53c0c8a30b3a9b62ef5539b2655753c3dc6a","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":"6dcc4922dea06f4d0462462b300c7e0d7a98aa1c4e1e99e1792928ea2433c201","impliedFormat":99},{"version":"9462f849ff8d50a61639f09a8e369f7584c623a8cbcf9d99c6b81aacbca91fd2","impliedFormat":99},{"version":"b914609f1e239e89a080ab7f5ff72594deb7cde2e9747eac1a8095593ffb4ba9","signature":"55aac1cafba7e50f99fb9e8628a7f634e8354534e96ea8585821215c87de20be","impliedFormat":99},{"version":"4fb51536d048114117c829bb5f4f5846f3988bbda16f57326507323fe19888a6","signature":"f88f71f98c5b98896efe89d3a38dc6ec813b7e08d168f1006c4973839d77ca08","impliedFormat":99},{"version":"e3e990113befca442516787f1b0c38345ce97b6424711b8082d890659c88d9d3","signature":"b76aa9f47943110ec585bb2b743aecb6f000377700923632f0db301482bdd73c","impliedFormat":99},{"version":"c2b69bbc1bbf79f09e72e69716aaddc83142a04e57bf30c673570aaabd5384e8","signature":"af1988260c49b37553045ea830586a7aeb8e442f20579ee17b5a2ac26141ad6c","impliedFormat":99},{"version":"acb02c911ca0e588841b120e519904adb79fe7dacc55d16bc6cdd2e02e15c1b4","signature":"bcd5f304d453dd40284c9645b5de54e0d8c8df0f3d80f53d664d3f99782d0ef5","impliedFormat":99},{"version":"6f173d4e758b7ff70a3e0b3b2906869970cd23559eb6f19bfd6caa395e8e6f51","signature":"a7298076563ec3132348662dacd7512b67a8564714460cf092a0211bcca5ee20","impliedFormat":99},{"version":"90bf7a0f6125cfb40e3b9c1f5f471a235bc92c9a0bf9934a996648e5861e70c9","signature":"c99b7291b92920c8990726218d15eb170e32f6d74c63b7a020f0812f8546d288","impliedFormat":99},{"version":"1a7eec8977d21e8bf216ea62b836bdda1768c2a49ee689e5e09fb2f56a7837e4","impliedFormat":99},{"version":"8deb0c1eae578bb83a0056727ddec6be752d015acebfdd90f53797f8a035e57d","affectsGlobalScope":true,"impliedFormat":99},{"version":"d0b90b2c22bda9b6a7dabfb505a7fd3896e0267ab791d63a4a37098d0829e1b0","impliedFormat":99},{"version":"d26efa37b7cbdcc391dc201683de609900869d285213abf1dcbfb5275427142f","affectsGlobalScope":true,"impliedFormat":99},{"version":"91fef52fa405faea2655ba962976276354dd95a8a798d50093f0f36d892f284a","impliedFormat":99},{"version":"586cc6c492134b4680582124d2cd7d20efe0993917871647e0000dbf670bc0da","impliedFormat":99},{"version":"128dd324162f550efaa333faa60d5e1a906ddc721d0886ae3dbeb1bcc54215d2","impliedFormat":99},{"version":"4b8b7197750fcbfe01b0c3b0e42a18367763e07eb937e0a278a27c69489a2575","impliedFormat":99},{"version":"d4da538767f45678c255eed4eec91d41258f5131eb71cfbc2e91ebf16a594589","impliedFormat":99},{"version":"dfa521b1b4994a5d12b9623631ecb8d95946c5d713a10b166c696eea38f033a3","affectsGlobalScope":true,"impliedFormat":99},{"version":"8da68db739c372e4946fa6d90801a130b2a4a0911bf675a67cea1a46bc8ef9b5","impliedFormat":99},{"version":"5909822e51c156ca38c8128a3b4fd79bb1ac06bfaef5b5dc6fa7d2ac9b1cd709","impliedFormat":99},{"version":"b5fc3758badb6cba6058263b5ecbeef42bc4facd91e0c22f5b67bd9cbf6f3c38","signature":"1981a715841b053d196bd2fa7094a40e443550be04387c5bd61bd987c862a8c1","impliedFormat":99},{"version":"f443edf6e3ec017a14d0548b99e633d275550f30c992b11e637b58f06d81a873","signature":"2b9a95c45751bab93ad8f47330f6e9ca44fe49484c34678f186994e92c539819","impliedFormat":99},{"version":"09cf69a8522e2f0ad61f5f06064790879630e9a6286d2ee67cb5c5e2a8294b01","signature":"d99f0729ec70cb1c9f9a7e6352033a73dc082bf4b51ee2c2c1a78a19072af511","impliedFormat":99},{"version":"3ed8aa2be77f350abf0e3187f5a741705e574fc096ed17f2272f541fc1c2b174","signature":"49243f7ff940e6fa2bb1064e9db8579284331ebfdbbc40afa4c5579c11daed12","impliedFormat":99},{"version":"78d090343163533c491a6d5f7e78345028525dad8309018d6f1d35353df76be7","signature":"e13cb0a1ad0c178ffd4c18d55e4928100f372b9676636f5ae7d60e1ff815a256","impliedFormat":99},{"version":"57377e13a58d49bd0728c0ecd74ba5be92a88f73d95db22b51b2d792ad6172cf","signature":"ca44c014d4c7b60f6f7c547055de18485d94714fb9012de67c2220449c3f4afc","impliedFormat":99},{"version":"aee9b6d84ee4c14f2d1606405b03f7d0b369e28a17014fb9eeef93eb30d84b66","signature":"0f633f56c3e62663502f33a45c9e05f06c638e00f949bbaa3efcb6623af1f910","impliedFormat":99},{"version":"56e8e992ec36beb9914f6d9a3c61b375e22aa9732f97ab43bd451f2f6ee9ea36","signature":"19764f46f5f49e9c0426e38e477f1ca75748f93e7314ff91fa92e4fd63df3eb8","impliedFormat":99},{"version":"330dd85a3b1d85485f78513f70b5ff7367e2b96b00278f140d5de0c263f0cef0","signature":"3978e1a4e65d355befa56b48fece71e9cee3985f568ad88de880a9ebc336b03a","impliedFormat":99},{"version":"0b6d588d7c2fa5b9a5b28cecffd371b63f5f730c9119120d19f8027d92ac7cfa","impliedFormat":99},{"version":"a1b8bcb1774f7f1ffb1e8fd0e411691ae561e866aedc8887e9f8f823da482a5c","affectsGlobalScope":true,"impliedFormat":99}],"root":[88,89,106,[110,116],[129,139]],"options":{"allowJs":true,"checkJs":false,"composite":true,"declaration":true,"declarationDir":"./lib/types","emitDeclarationOnly":true,"experimentalDecorators":true,"module":199,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":false,"target":99},"referencedMap":[[98,1],[99,2],[100,3],[101,4],[117,5],[118,6],[123,7],[124,8],[125,9],[126,10],[127,11],[128,12],[102,13],[139,14],[105,15],[106,16],[107,17],[97,18],[90,19],[91,20],[108,21],[109,22],[119,23],[120,24],[121,3],[122,25],[93,26],[94,18],[95,27],[96,28],[110,20],[111,20],[116,20],[129,29],[130,30],[138,31],[137,20],[135,30]],"latestChangedDtsFile":"./lib/types/index.d.ts","version":"6.0.3"}
|