@gtkx/native 0.20.0 → 1.0.0-rc.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@gtkx/native",
3
- "version": "0.20.0",
4
- "description": "Rust-based native module providing FFI bindings for GTKX",
3
+ "version": "1.0.0-rc.1",
4
+ "description": "Rust addon under GTKX that loads shared libraries, marshals values, and tracks GObject handles",
5
5
  "keywords": [
6
6
  "gtkx",
7
7
  "gtk",
@@ -9,7 +9,7 @@
9
9
  "native",
10
10
  "ffi",
11
11
  "rust",
12
- "neon",
12
+ "napi",
13
13
  "linux",
14
14
  "desktop"
15
15
  ],
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://github.com/gtkx-org/gtkx.git",
22
+ "url": "git+https://github.com/gtkx-org/gtkx.git",
23
23
  "directory": "packages/native"
24
24
  },
25
25
  "license": "MPL-2.0",
@@ -28,30 +28,45 @@
28
28
  "exports": {
29
29
  "./package.json": "./package.json",
30
30
  ".": {
31
- "types": "./dist/index.d.ts",
32
- "default": "./dist/index.js"
31
+ "types": "./main.d.ts",
32
+ "default": "./main.js"
33
33
  }
34
34
  },
35
- "sideEffects": false,
35
+ "sideEffects": [
36
+ "./main.js"
37
+ ],
36
38
  "files": [
37
- "dist",
38
- "index.ts",
39
- "types.ts"
39
+ "index.js",
40
+ "index.d.ts",
41
+ "main.js",
42
+ "main.d.ts"
40
43
  ],
41
- "optionalDependencies": {
42
- "@gtkx/native-linux-arm64": "0.20.0",
43
- "@gtkx/native-linux-x64": "0.20.0"
44
+ "napi": {
45
+ "binaryName": "native",
46
+ "targets": [
47
+ "x86_64-unknown-linux-gnu",
48
+ "aarch64-unknown-linux-gnu"
49
+ ]
50
+ },
51
+ "engines": {
52
+ "node": ">=24"
44
53
  },
45
54
  "devDependencies": {
46
- "@neon-rs/cli": "^0.1.82",
47
- "@gtkx/vitest": "0.20.0"
55
+ "@napi-rs/cli": "^3.7.3"
56
+ },
57
+ "optionalDependencies": {
58
+ "@gtkx/native-linux-arm64-gnu": "1.0.0-rc.1",
59
+ "@gtkx/native-linux-x64-gnu": "1.0.0-rc.1"
48
60
  },
49
61
  "scripts": {
50
- "build": "tsc -b && cp ../../README.md .",
51
- "lint": "cargo fmt --check && cargo clippy -- -D warnings",
52
- "native-build": "node scripts/build.js",
53
- "native-test": "xvfb-run -a cargo test -- --test-threads=1",
54
- "test": "vitest run",
55
- "typecheck": "tsc -b --emitDeclarationOnly"
62
+ "artifacts": "napi artifacts",
63
+ "build": "napi build --platform --release --esm --no-dts-cache --no-const-enum",
64
+ "coverage": "mkdir -p coverage && tsx ../../scripts/run-headless.ts cargo +nightly llvm-cov --lcov --output-path coverage/native.lcov.info --fail-under-lines 70 -- --test-threads=1",
65
+ "create-npm-dirs": "napi create-npm-dirs",
66
+ "lint": "cargo fmt --check && cargo clippy --all-targets -- -D warnings",
67
+ "test:asan": "RUSTFLAGS=\"-Zsanitizer=address\" ASAN_OPTIONS=\"detect_leaks=0:abort_on_error=1:detect_stack_use_after_return=1\" tsx ../../scripts/run-headless.ts cargo +nightly test --target x86_64-unknown-linux-gnu -- --test-threads=1",
68
+ "test:miri": "tsx ../../scripts/run-headless.ts cargo +nightly miri test --test integer_codec --test descriptor_into_codec",
69
+ "test": "tsx ../../scripts/run-headless.ts cargo test -- --test-threads=1",
70
+ "release": "tsx ../../scripts/prepublish-native.ts && tsx ../../scripts/release-package.ts"
56
71
  }
57
72
  }
package/dist/index.d.ts DELETED
@@ -1,115 +0,0 @@
1
- import type { Arg, CallbackType, NativeHandle, Ref, Type } from "./types.js";
2
- /**
3
- * Creates a mutable reference wrapper.
4
- *
5
- * Used for out-parameters in FFI calls where the native function
6
- * needs to write a value back.
7
- *
8
- * @typeParam T - The type of the referenced value
9
- * @param value - Initial value
10
- * @returns A reference object containing the value
11
- *
12
- * @example
13
- * ```tsx
14
- * const errorRef = createRef<GError | null>(null);
15
- * const result = someFunction(errorRef);
16
- * if (errorRef.value) {
17
- * console.error(errorRef.value.message);
18
- * }
19
- * ```
20
- */
21
- export declare function createRef<T>(value: T): Ref<T>;
22
- /**
23
- * Makes a low-level FFI call to a native library.
24
- *
25
- * This is the core FFI mechanism. Most code should use the generated
26
- * bindings in `@gtkx/ffi` instead of calling this directly.
27
- *
28
- * @param library - Shared library name (e.g., "libgtk-4.so.1")
29
- * @param symbol - Function symbol name
30
- * @param args - Function arguments with type information
31
- * @param returnType - Expected return type
32
- * @returns The function return value
33
- */
34
- export declare function call(library: string, symbol: string, args: Arg[], returnType: Type): unknown;
35
- /**
36
- * Starts the GTK runtime and creates an application.
37
- *
38
- * @param appId - Application ID in reverse domain notation
39
- * @param flags - Optional GIO application flags
40
- * @returns Native application pointer
41
- *
42
- * @internal Use `@gtkx/ffi` start() instead
43
- */
44
- export declare function start(appId: string, flags?: number): unknown;
45
- /**
46
- * Stops the GTK runtime.
47
- *
48
- * @internal Use `@gtkx/ffi` stop() instead
49
- */
50
- export declare function stop(): void;
51
- /**
52
- * Reads a value from native memory.
53
- *
54
- * @param handle - Native handle pointing to the memory
55
- * @param type - Type of value to read
56
- * @param offset - Byte offset from the handle pointer
57
- * @returns The read value
58
- */
59
- export declare function read(handle: unknown, type: Type, offset: number): unknown;
60
- /**
61
- * Writes a value to native memory.
62
- *
63
- * @param handle - Native handle pointing to the memory
64
- * @param type - Type of value to write
65
- * @param offset - Byte offset from the handle pointer
66
- * @param value - Value to write
67
- */
68
- export declare function write(handle: unknown, type: Type, offset: number, value: unknown): void;
69
- /**
70
- * Allocates memory for a boxed type or plain struct.
71
- *
72
- * @param size - Size in bytes to allocate
73
- * @param glibTypeName - GLib type name for boxed types (optional for plain structs)
74
- * @param lib - Optional library containing the type
75
- * @returns Native pointer to allocated memory
76
- */
77
- export declare function alloc(size: number, glibTypeName?: string, lib?: string): unknown;
78
- /**
79
- * Gets the internal handle ID for a native pointer.
80
- *
81
- * Used for comparing object identity.
82
- *
83
- * @param handle - Native handle
84
- * @returns Internal handle ID
85
- */
86
- export declare function getNativeId(handle: unknown): number;
87
- /**
88
- * Reads a value from memory pointed to by a pointer field.
89
- *
90
- * Used for accessing array elements or dereferencing pointer fields.
91
- * Reads the pointer at ptrOffset, then reads from that location plus elementOffset.
92
- *
93
- * @param handle - Native handle pointing to the parent struct
94
- * @param ptrOffset - Byte offset of the pointer field in the parent
95
- * @param elementOffset - Byte offset from the dereferenced pointer
96
- * @returns Native handle pointing to the element (borrowed, non-owning)
97
- */
98
- export declare function readPointer(handle: unknown, ptrOffset: number, elementOffset: number): unknown;
99
- /**
100
- * Writes a struct value to memory pointed to by a pointer field.
101
- *
102
- * Used for setting array elements. Copies the data from source to the
103
- * destination array element.
104
- *
105
- * @param destHandle - Native handle pointing to the parent struct containing the pointer
106
- * @param ptrOffset - Byte offset of the pointer field in the parent
107
- * @param elementOffset - Byte offset from the dereferenced pointer (index * elementSize)
108
- * @param sourceHandle - Native handle of the struct to copy from
109
- * @param size - Size in bytes of the struct to copy
110
- */
111
- export declare function writePointer(destHandle: unknown, ptrOffset: number, elementOffset: number, sourceHandle: unknown, size: number): void;
112
- export declare function freeze(): void;
113
- export declare function unfreeze(): void;
114
- export type { NativeHandle, Ref, Arg, Type, CallbackType };
115
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,GAAG,EAAE,YAAY,EAAE,YAAY,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AA4B7E;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,SAAS,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAE7C;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,UAAU,EAAE,IAAI,GAAG,OAAO,CAE5F;AAED;;;;;;;;GAQG;AACH,wBAAgB,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAE5D;AAED;;;;GAIG;AACH,wBAAgB,IAAI,IAAI,IAAI,CAE3B;AAED;;;;;;;GAOG;AACH,wBAAgB,IAAI,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAEzE;AAED;;;;;;;GAOG;AACH,wBAAgB,KAAK,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAEvF;AAED;;;;;;;GAOG;AACH,wBAAgB,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAEhF;AAED;;;;;;;GAOG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM,CAEnD;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO,CAE9F;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,YAAY,CACxB,UAAU,EAAE,OAAO,EACnB,SAAS,EAAE,MAAM,EACjB,aAAa,EAAE,MAAM,EACrB,YAAY,EAAE,OAAO,EACrB,IAAI,EAAE,MAAM,GACb,IAAI,CAEN;AAED,wBAAgB,MAAM,IAAI,IAAI,CAE7B;AAED,wBAAgB,QAAQ,IAAI,IAAI,CAE/B;AAED,YAAY,EAAE,YAAY,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC"}
package/dist/index.js DELETED
@@ -1,159 +0,0 @@
1
- import { createRequire } from "node:module";
2
- import { arch, platform } from "node:os";
3
- const require = createRequire(import.meta.url);
4
- function loadNativeBinding() {
5
- const currentPlatform = platform();
6
- const currentArch = arch();
7
- if (currentPlatform !== "linux") {
8
- throw new Error(`Unsupported platform: ${currentPlatform}. Only Linux is supported.`);
9
- }
10
- if (currentArch !== "x64" && currentArch !== "arm64") {
11
- throw new Error(`Unsupported architecture: ${currentArch}. Only x64 and arm64 are supported.`);
12
- }
13
- const packageName = `@gtkx/native-linux-${currentArch}`;
14
- try {
15
- return require(packageName);
16
- }
17
- catch (error) {
18
- const originalError = error instanceof Error ? error.message : String(error);
19
- throw new Error(`Failed to load native binding for ${currentPlatform}-${currentArch}: ${originalError}`);
20
- }
21
- }
22
- const native = loadNativeBinding();
23
- /**
24
- * Creates a mutable reference wrapper.
25
- *
26
- * Used for out-parameters in FFI calls where the native function
27
- * needs to write a value back.
28
- *
29
- * @typeParam T - The type of the referenced value
30
- * @param value - Initial value
31
- * @returns A reference object containing the value
32
- *
33
- * @example
34
- * ```tsx
35
- * const errorRef = createRef<GError | null>(null);
36
- * const result = someFunction(errorRef);
37
- * if (errorRef.value) {
38
- * console.error(errorRef.value.message);
39
- * }
40
- * ```
41
- */
42
- export function createRef(value) {
43
- return { value };
44
- }
45
- /**
46
- * Makes a low-level FFI call to a native library.
47
- *
48
- * This is the core FFI mechanism. Most code should use the generated
49
- * bindings in `@gtkx/ffi` instead of calling this directly.
50
- *
51
- * @param library - Shared library name (e.g., "libgtk-4.so.1")
52
- * @param symbol - Function symbol name
53
- * @param args - Function arguments with type information
54
- * @param returnType - Expected return type
55
- * @returns The function return value
56
- */
57
- export function call(library, symbol, args, returnType) {
58
- return native.call(library, symbol, args, returnType);
59
- }
60
- /**
61
- * Starts the GTK runtime and creates an application.
62
- *
63
- * @param appId - Application ID in reverse domain notation
64
- * @param flags - Optional GIO application flags
65
- * @returns Native application pointer
66
- *
67
- * @internal Use `@gtkx/ffi` start() instead
68
- */
69
- export function start(appId, flags) {
70
- return native.start(appId, flags);
71
- }
72
- /**
73
- * Stops the GTK runtime.
74
- *
75
- * @internal Use `@gtkx/ffi` stop() instead
76
- */
77
- export function stop() {
78
- native.stop();
79
- }
80
- /**
81
- * Reads a value from native memory.
82
- *
83
- * @param handle - Native handle pointing to the memory
84
- * @param type - Type of value to read
85
- * @param offset - Byte offset from the handle pointer
86
- * @returns The read value
87
- */
88
- export function read(handle, type, offset) {
89
- return native.read(handle, type, offset);
90
- }
91
- /**
92
- * Writes a value to native memory.
93
- *
94
- * @param handle - Native handle pointing to the memory
95
- * @param type - Type of value to write
96
- * @param offset - Byte offset from the handle pointer
97
- * @param value - Value to write
98
- */
99
- export function write(handle, type, offset, value) {
100
- native.write(handle, type, offset, value);
101
- }
102
- /**
103
- * Allocates memory for a boxed type or plain struct.
104
- *
105
- * @param size - Size in bytes to allocate
106
- * @param glibTypeName - GLib type name for boxed types (optional for plain structs)
107
- * @param lib - Optional library containing the type
108
- * @returns Native pointer to allocated memory
109
- */
110
- export function alloc(size, glibTypeName, lib) {
111
- return native.alloc(size, glibTypeName, lib);
112
- }
113
- /**
114
- * Gets the internal handle ID for a native pointer.
115
- *
116
- * Used for comparing object identity.
117
- *
118
- * @param handle - Native handle
119
- * @returns Internal handle ID
120
- */
121
- export function getNativeId(handle) {
122
- return native.getNativeId(handle);
123
- }
124
- /**
125
- * Reads a value from memory pointed to by a pointer field.
126
- *
127
- * Used for accessing array elements or dereferencing pointer fields.
128
- * Reads the pointer at ptrOffset, then reads from that location plus elementOffset.
129
- *
130
- * @param handle - Native handle pointing to the parent struct
131
- * @param ptrOffset - Byte offset of the pointer field in the parent
132
- * @param elementOffset - Byte offset from the dereferenced pointer
133
- * @returns Native handle pointing to the element (borrowed, non-owning)
134
- */
135
- export function readPointer(handle, ptrOffset, elementOffset) {
136
- return native.readPointer(handle, ptrOffset, elementOffset);
137
- }
138
- /**
139
- * Writes a struct value to memory pointed to by a pointer field.
140
- *
141
- * Used for setting array elements. Copies the data from source to the
142
- * destination array element.
143
- *
144
- * @param destHandle - Native handle pointing to the parent struct containing the pointer
145
- * @param ptrOffset - Byte offset of the pointer field in the parent
146
- * @param elementOffset - Byte offset from the dereferenced pointer (index * elementSize)
147
- * @param sourceHandle - Native handle of the struct to copy from
148
- * @param size - Size in bytes of the struct to copy
149
- */
150
- export function writePointer(destHandle, ptrOffset, elementOffset, sourceHandle, size) {
151
- native.writePointer(destHandle, ptrOffset, elementOffset, sourceHandle, size);
152
- }
153
- export function freeze() {
154
- native.freeze();
155
- }
156
- export function unfreeze() {
157
- native.unfreeze();
158
- }
159
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+react@19.2.14/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.2.14/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@19.2.14/node_modules/@types/react/jsx-runtime.d.ts","../types.ts","../index.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/path/posix.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/path/win32.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/quic.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/test/reporters.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/util/types.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@25.3.0/node_modules/@types/node/index.d.ts"],"fileIdsList":[[89,149,150,152,160,164,167,169,170,171,183],[89,151,152,160,164,167,169,170,171,183],[152,160,164,167,169,170,171,183],[89,152,160,164,167,169,170,171,183,191],[89,152,153,158,160,163,164,167,169,170,171,173,183,188,200],[89,152,153,154,160,163,164,167,169,170,171,183],[89,152,160,164,167,169,170,171,183],[89,152,155,160,164,167,169,170,171,183,201],[89,152,156,157,160,164,167,169,170,171,174,183],[89,152,157,160,164,167,169,170,171,183,188,197],[89,152,158,160,163,164,167,169,170,171,173,183],[89,151,152,159,160,164,167,169,170,171,183],[89,152,160,161,164,167,169,170,171,183],[89,152,160,162,163,164,167,169,170,171,183],[89,151,152,160,163,164,167,169,170,171,183],[89,152,160,163,164,165,167,169,170,171,183,188,200],[89,152,160,163,164,165,167,169,170,171,183,188,191],[89,139,152,160,163,164,166,167,169,170,171,173,183,188,200],[89,152,160,163,164,166,167,169,170,171,173,183,188,197,200],[89,152,160,164,166,167,168,169,170,171,183,188,197,200],[87,88,89,90,91,92,93,94,95,96,97,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207],[89,152,160,163,164,167,169,170,171,183],[89,152,160,164,167,169,171,183],[89,152,160,164,167,169,170,171,172,183,200],[89,152,160,163,164,167,169,170,171,173,183,188],[89,152,160,164,167,169,170,171,174,183],[89,152,160,164,167,169,170,171,175,183],[89,152,160,163,164,167,169,170,171,178,183],[89,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207],[89,152,160,164,167,169,170,171,180,183],[89,152,160,164,167,169,170,171,181,183],[89,152,157,160,164,167,169,170,171,173,183,191],[89,152,160,163,164,167,169,170,171,183,184],[89,152,160,164,167,169,170,171,183,185,201,204],[89,152,160,163,164,167,169,170,171,183,188,190,191],[89,152,160,164,167,169,170,171,183,189,191],[89,152,160,164,167,169,170,171,183,191,201],[89,152,160,164,167,169,170,171,183,192],[89,149,152,160,164,167,169,170,171,183,188,194,200],[89,152,160,164,167,169,170,171,183,188,193],[89,152,160,163,164,167,169,170,171,183,195,196],[89,152,160,164,167,169,170,171,183,195,196],[89,152,157,160,164,167,169,170,171,173,183,188,197],[89,152,160,164,167,169,170,171,183,198],[89,152,160,164,167,169,170,171,173,183,199],[89,152,160,164,166,167,169,170,171,181,183,200],[89,152,160,164,167,169,170,171,183,201,202],[89,152,157,160,164,167,169,170,171,183,202],[89,152,160,164,167,169,170,171,183,188,203],[89,152,160,164,167,169,170,171,172,183,204],[89,152,160,164,167,169,170,171,183,205],[89,152,155,160,164,167,169,170,171,183],[89,152,157,160,164,167,169,170,171,183],[89,152,160,164,167,169,170,171,183,201],[89,139,152,160,164,167,169,170,171,183],[89,152,160,164,167,169,170,171,183,200],[89,152,160,164,167,169,170,171,183,206],[89,152,160,164,167,169,170,171,178,183],[89,152,160,164,167,169,170,171,183,196],[89,139,152,160,163,164,165,167,169,170,171,178,183,188,191,200,203,204,206],[89,152,160,164,167,169,170,171,183,188,207],[81,82,89,152,160,164,167,169,170,171,183],[83,89,152,160,164,167,169,170,171,183],[89,104,107,110,111,152,160,164,167,169,170,171,183,200],[89,107,152,160,164,167,169,170,171,183,188,200],[89,107,111,152,160,164,167,169,170,171,183,200],[89,152,160,164,167,169,170,171,183,188],[89,101,152,160,164,167,169,170,171,183],[89,105,152,160,164,167,169,170,171,183],[89,103,104,107,152,160,164,167,169,170,171,183,200],[89,152,160,164,167,169,170,171,173,183,197],[89,152,160,164,167,169,170,171,183,208],[89,101,152,160,164,167,169,170,171,183,208],[89,103,107,152,160,164,167,169,170,171,173,183,200],[89,98,99,100,102,106,152,160,163,164,167,169,170,171,183,188,200],[89,107,116,124,152,160,164,167,169,170,171,183],[89,99,105,152,160,164,167,169,170,171,183],[89,107,133,134,152,160,164,167,169,170,171,183],[89,99,102,107,152,160,164,167,169,170,171,183,191,200,208],[89,107,152,160,164,167,169,170,171,183],[89,103,107,152,160,164,167,169,170,171,183,200],[89,98,152,160,164,167,169,170,171,183],[89,101,102,103,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,152,160,164,167,169,170,171,183],[89,107,126,129,152,160,164,167,169,170,171,183],[89,107,116,117,118,152,160,164,167,169,170,171,183],[89,105,107,117,119,152,160,164,167,169,170,171,183],[89,106,152,160,164,167,169,170,171,183],[89,99,101,107,152,160,164,167,169,170,171,183],[89,107,111,117,119,152,160,164,167,169,170,171,183],[89,111,152,160,164,167,169,170,171,183],[89,105,107,110,152,160,164,167,169,170,171,183,200],[89,99,103,107,116,152,160,164,167,169,170,171,183],[89,107,126,152,160,164,167,169,170,171,183],[89,119,152,160,164,167,169,170,171,183],[89,101,107,133,152,160,164,167,169,170,171,183,191,206,208],[84,85,89,152,160,164,167,169,170,171,172,174,183],[84,89,152,160,164,167,169,170,171,183]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc0a7f107690ee5cd8afc8dbf05c4df78085471ce16bdd9881642ec738bc81fe","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"5f9a13935c47e8ccc1638d6a62eb6d68b3f6c8d3540e05746c260a7449492594","signature":"8dcb9d6ced753ff0d059c1cf7f56e2f322282f77686f390cff80a880bbe536d3","impliedFormat":99},{"version":"30045925b2f38bbe45f07d6cbd27af0bb2c33a96291e757f69be29e6a159b6f1","signature":"4760d7ce1db3d7464e3ff8f1f25b4075029de4f4ff3b12238a9244fe0a9cb39e","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","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":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","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":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","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":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"237ba5ac2a95702a114a309e39c53a5bddff5f6333b325db9764df9b34f3502b","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"f83fb2b1338afbb3f9d733c7d6e8b135826c41b0518867df0c0ace18ae1aa270","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9451a46a89ed209e2e08329e6cac59f89356eae79a7230f916d8cc38725407c7","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"f7ba0e839daa0702e3ff1a1a871c0d8ea2d586ce684dd8a72c786c36a680b1d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f64deb26664af64dc274637343bde8d82f930c77af05a412c7d310b77207a448","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"bce309f4d9b67c18d4eeff5bba6cf3e67b2b0aead9f03f75d6060c553974d7ba","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"c3877fef8a43cd434f9728f25a97575b0eb73d92f38b5c87c840daccc3e21d97","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"1dbd83860e7634f9c236647f45dbc5d3c4f9eba8827d87209d6e9826fdf4dbd5","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[85,86],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":false,"jsx":4,"module":199,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","removeComments":false,"rootDir":"..","skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":99},"referencedMap":[[149,1],[150,1],[151,2],[89,3],[152,4],[153,5],[154,6],[87,7],[155,8],[156,9],[157,10],[158,11],[159,12],[160,13],[161,13],[162,14],[163,15],[164,16],[165,17],[90,7],[88,7],[166,18],[167,19],[168,20],[208,21],[169,22],[170,23],[171,22],[172,24],[173,25],[174,26],[175,27],[176,27],[177,27],[178,28],[179,29],[180,30],[181,31],[182,32],[183,33],[184,33],[185,34],[186,7],[187,7],[188,35],[189,36],[190,35],[191,37],[192,38],[193,39],[194,40],[195,41],[196,42],[197,43],[198,44],[199,45],[200,46],[201,47],[202,48],[203,49],[204,50],[205,51],[91,22],[92,7],[93,52],[94,53],[95,7],[96,54],[97,7],[140,55],[141,56],[142,57],[143,57],[144,58],[145,7],[146,4],[147,59],[148,56],[206,60],[207,61],[81,7],[83,62],[84,63],[82,7],[79,7],[80,7],[14,7],[13,7],[2,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[3,7],[23,7],[24,7],[4,7],[25,7],[29,7],[26,7],[27,7],[28,7],[30,7],[31,7],[32,7],[5,7],[33,7],[34,7],[35,7],[36,7],[6,7],[40,7],[37,7],[38,7],[39,7],[41,7],[7,7],[42,7],[47,7],[48,7],[43,7],[44,7],[45,7],[46,7],[8,7],[52,7],[49,7],[50,7],[51,7],[53,7],[9,7],[54,7],[55,7],[56,7],[58,7],[57,7],[59,7],[60,7],[10,7],[61,7],[62,7],[63,7],[11,7],[64,7],[65,7],[66,7],[67,7],[68,7],[1,7],[69,7],[70,7],[12,7],[74,7],[72,7],[77,7],[76,7],[71,7],[75,7],[73,7],[78,7],[116,64],[128,65],[113,66],[129,67],[138,68],[104,69],[105,70],[103,71],[137,72],[132,73],[136,74],[107,75],[125,76],[106,77],[135,78],[101,79],[102,73],[108,80],[109,7],[115,81],[112,80],[99,82],[139,83],[130,84],[119,85],[118,80],[120,86],[123,87],[117,88],[121,89],[133,72],[110,90],[111,91],[124,92],[100,67],[127,93],[126,80],[114,91],[122,94],[131,7],[98,7],[134,95],[86,96],[85,97]],"latestChangedDtsFile":"./index.d.ts","version":"5.9.3"}
package/dist/types.d.ts DELETED
@@ -1,116 +0,0 @@
1
- /**
2
- * Opaque handle for a native value.
3
- *
4
- * Wraps GObject, Boxed, and Fundamental type instances.
5
- * This branded type ensures type safety for native object references.
6
- */
7
- export type NativeHandle = {
8
- readonly __brand: "NativeHandle";
9
- };
10
- type IntegerType = {
11
- type: "int";
12
- size: 8 | 16 | 32 | 64;
13
- unsigned: boolean;
14
- library?: string;
15
- getTypeFn?: string;
16
- };
17
- type FloatType = {
18
- type: "float";
19
- size: 32 | 64;
20
- };
21
- type BooleanType = {
22
- type: "boolean";
23
- };
24
- type Ownership = "full" | "borrowed";
25
- type StringType = {
26
- type: "string";
27
- ownership: Ownership;
28
- length?: number;
29
- };
30
- type GObjectType = {
31
- type: "gobject";
32
- ownership: Ownership;
33
- };
34
- type BoxedType = {
35
- type: "boxed";
36
- ownership: Ownership;
37
- innerType: string;
38
- library?: string;
39
- getTypeFn?: string;
40
- };
41
- type StructType = {
42
- type: "struct";
43
- ownership: Ownership;
44
- innerType: string;
45
- size?: number;
46
- };
47
- type FundamentalType = {
48
- type: "fundamental";
49
- ownership: Ownership;
50
- library: string;
51
- refFn: string;
52
- unrefFn: string;
53
- };
54
- type ArrayType = {
55
- type: "array";
56
- itemType: Type;
57
- kind: "array" | "glist" | "gslist" | "gptrarray" | "garray" | "sized" | "fixed";
58
- ownership: Ownership;
59
- elementSize?: number;
60
- sizeParamIndex?: number;
61
- fixedSize?: number;
62
- };
63
- type HashTableType = {
64
- type: "hashtable";
65
- keyType: Type;
66
- valueType: Type;
67
- ownership: Ownership;
68
- };
69
- type RefType = {
70
- type: "ref";
71
- innerType: Type;
72
- };
73
- type NullType = {
74
- type: "null";
75
- };
76
- type UndefinedType = {
77
- type: "undefined";
78
- };
79
- export type CallbackType = {
80
- type: "callback";
81
- kind: "animationTargetFunc" | "asyncReadyCallback" | "closure" | "destroyNotify" | "drawingAreaDrawFunc" | "pathIntersectionFunc" | "scaleFormatValueFunc" | "shapeRendererFunc" | "shortcutFunc" | "tickCallback" | "treeListModelCreateModelFunc";
82
- argTypes: Type[];
83
- returnType: Type;
84
- sourceType?: Type;
85
- resultType?: Type;
86
- };
87
- /**
88
- * Discriminated union of all FFI type descriptors.
89
- *
90
- * Describes how to marshal values between JavaScript and native code.
91
- */
92
- export type Type = IntegerType | FloatType | BooleanType | StringType | GObjectType | BoxedType | StructType | FundamentalType | ArrayType | HashTableType | RefType | CallbackType | NullType | UndefinedType;
93
- /**
94
- * An argument for an FFI call.
95
- *
96
- * Combines a value with its type information for marshaling.
97
- */
98
- export type Arg = {
99
- /** Type descriptor for marshaling */
100
- type: Type;
101
- /** The argument value */
102
- value: unknown;
103
- /** Whether the argument can be null/undefined */
104
- optional?: boolean;
105
- };
106
- /**
107
- * A mutable reference wrapper for out-parameters.
108
- *
109
- * @typeParam T - The type of the referenced value
110
- */
111
- export type Ref<T> = {
112
- /** The current value */
113
- value: T;
114
- };
115
- export {};
116
- //# sourceMappingURL=types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,MAAM,YAAY,GAAG;IAAE,QAAQ,CAAC,OAAO,EAAE,cAAc,CAAA;CAAE,CAAC;AAEhE,KAAK,WAAW,GAAG;IAAE,IAAI,EAAE,KAAK,CAAC;IAAC,IAAI,EAAE,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC;IAAC,QAAQ,EAAE,OAAO,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAEpH,KAAK,SAAS,GAAG;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,IAAI,EAAE,EAAE,GAAG,EAAE,CAAA;CAAE,CAAC;AAElD,KAAK,WAAW,GAAG;IAAE,IAAI,EAAE,SAAS,CAAA;CAAE,CAAC;AAEvC,KAAK,SAAS,GAAG,MAAM,GAAG,UAAU,CAAC;AAErC,KAAK,UAAU,GAAG;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,SAAS,EAAE,SAAS,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAE5E,KAAK,WAAW,GAAG;IAAE,IAAI,EAAE,SAAS,CAAC;IAAC,SAAS,EAAE,SAAS,CAAA;CAAE,CAAC;AAE7D,KAAK,SAAS,GAAG;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,SAAS,EAAE,SAAS,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAElH,KAAK,UAAU,GAAG;IAAE,IAAI,EAAE,QAAQ,CAAC;IAAC,SAAS,EAAE,SAAS,CAAC;IAAC,SAAS,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAE7F,KAAK,eAAe,GAAG;IACnB,IAAI,EAAE,aAAa,CAAC;IACpB,SAAS,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,KAAK,SAAS,GAAG;IACb,IAAI,EAAE,OAAO,CAAC;IACd,QAAQ,EAAE,IAAI,CAAC;IACf,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,WAAW,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,CAAC;IAChF,SAAS,EAAE,SAAS,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,KAAK,aAAa,GAAG;IACjB,IAAI,EAAE,WAAW,CAAC;IAClB,OAAO,EAAE,IAAI,CAAC;IACd,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,SAAS,CAAC;CACxB,CAAC;AAEF,KAAK,OAAO,GAAG;IAAE,IAAI,EAAE,KAAK,CAAC;IAAC,SAAS,EAAE,IAAI,CAAA;CAAE,CAAC;AAEhD,KAAK,QAAQ,GAAG;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,CAAC;AAEjC,KAAK,aAAa,GAAG;IAAE,IAAI,EAAE,WAAW,CAAA;CAAE,CAAC;AAE3C,MAAM,MAAM,YAAY,GAAG;IACvB,IAAI,EAAE,UAAU,CAAC;IACjB,IAAI,EACE,qBAAqB,GACrB,oBAAoB,GACpB,SAAS,GACT,eAAe,GACf,qBAAqB,GACrB,sBAAsB,GACtB,sBAAsB,GACtB,mBAAmB,GACnB,cAAc,GACd,cAAc,GACd,8BAA8B,CAAC;IACrC,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjB,UAAU,EAAE,IAAI,CAAC;IACjB,UAAU,CAAC,EAAE,IAAI,CAAC;IAClB,UAAU,CAAC,EAAE,IAAI,CAAC;CACrB,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,IAAI,GACV,WAAW,GACX,SAAS,GACT,WAAW,GACX,UAAU,GACV,WAAW,GACX,SAAS,GACT,UAAU,GACV,eAAe,GACf,SAAS,GACT,aAAa,GACb,OAAO,GACP,YAAY,GACZ,QAAQ,GACR,aAAa,CAAC;AAEpB;;;;GAIG;AACH,MAAM,MAAM,GAAG,GAAG;IACd,qCAAqC;IACrC,IAAI,EAAE,IAAI,CAAC;IACX,yBAAyB;IACzB,KAAK,EAAE,OAAO,CAAC;IACf,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,GAAG,CAAC,CAAC,IAAI;IACjB,wBAAwB;IACxB,KAAK,EAAE,CAAC,CAAC;CACZ,CAAC"}