@yume-chan/struct 0.0.18 → 0.0.19

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.
Files changed (66) hide show
  1. package/CHANGELOG.json +6 -0
  2. package/CHANGELOG.md +6 -1
  3. package/esm/basic/definition.d.ts +43 -43
  4. package/esm/basic/definition.d.ts.map +1 -1
  5. package/esm/basic/definition.js +23 -23
  6. package/esm/basic/field-value.d.ts +38 -38
  7. package/esm/basic/field-value.d.ts.map +1 -1
  8. package/esm/basic/field-value.js +45 -45
  9. package/esm/basic/index.d.ts +5 -5
  10. package/esm/basic/index.js +5 -5
  11. package/esm/basic/options.d.ts +9 -9
  12. package/esm/basic/options.js +3 -3
  13. package/esm/basic/stream.d.ts +19 -19
  14. package/esm/basic/stream.d.ts.map +1 -1
  15. package/esm/basic/stream.js +1 -1
  16. package/esm/basic/struct-value.d.ts +25 -25
  17. package/esm/basic/struct-value.d.ts.map +1 -1
  18. package/esm/basic/struct-value.js +56 -56
  19. package/esm/index.d.ts +13 -13
  20. package/esm/index.js +5 -5
  21. package/esm/struct.d.ts +130 -129
  22. package/esm/struct.d.ts.map +1 -1
  23. package/esm/struct.js +210 -210
  24. package/esm/struct.js.map +1 -1
  25. package/esm/sync-promise.d.ts +12 -12
  26. package/esm/sync-promise.js +70 -70
  27. package/esm/types/bigint.d.ts +25 -24
  28. package/esm/types/bigint.d.ts.map +1 -1
  29. package/esm/types/bigint.js +47 -46
  30. package/esm/types/bigint.js.map +1 -1
  31. package/esm/types/buffer/base.d.ts +64 -63
  32. package/esm/types/buffer/base.d.ts.map +1 -1
  33. package/esm/types/buffer/base.js +102 -100
  34. package/esm/types/buffer/base.js.map +1 -1
  35. package/esm/types/buffer/fixed-length.d.ts +8 -7
  36. package/esm/types/buffer/fixed-length.d.ts.map +1 -1
  37. package/esm/types/buffer/fixed-length.js +6 -6
  38. package/esm/types/buffer/fixed-length.js.map +1 -1
  39. package/esm/types/buffer/index.d.ts +3 -3
  40. package/esm/types/buffer/index.js +3 -3
  41. package/esm/types/buffer/variable-length.d.ts +44 -42
  42. package/esm/types/buffer/variable-length.d.ts.map +1 -1
  43. package/esm/types/buffer/variable-length.js +75 -75
  44. package/esm/types/buffer/variable-length.js.map +1 -1
  45. package/esm/types/index.d.ts +3 -3
  46. package/esm/types/index.js +3 -3
  47. package/esm/types/number.d.ts +27 -26
  48. package/esm/types/number.d.ts.map +1 -1
  49. package/esm/types/number.js +113 -113
  50. package/esm/types/number.js.map +1 -1
  51. package/esm/utils.d.ts +47 -47
  52. package/esm/utils.js +15 -15
  53. package/package.json +7 -6
  54. package/src/basic/definition.ts +6 -6
  55. package/src/basic/field-value.ts +3 -3
  56. package/src/basic/index.ts +5 -5
  57. package/src/basic/stream.ts +1 -1
  58. package/src/basic/struct-value.ts +1 -1
  59. package/src/index.ts +5 -5
  60. package/src/struct.ts +14 -15
  61. package/src/types/bigint.ts +7 -8
  62. package/src/types/buffer/base.ts +8 -8
  63. package/src/types/buffer/fixed-length.ts +2 -1
  64. package/src/types/buffer/variable-length.ts +8 -11
  65. package/src/types/number.ts +7 -8
  66. package/tsconfig.build.tsbuildinfo +1 -1
package/esm/utils.d.ts CHANGED
@@ -1,48 +1,48 @@
1
- /**
2
- * When evaluating a very complex generic type alias,
3
- * tell TypeScript to use `T`, instead of current type alias' name, as the result type name
4
- *
5
- * Example:
6
- *
7
- * ```ts
8
- * type WithIdentity<T> = Identity<SomeType<T>>;
9
- * type WithoutIdentity<T> = SomeType<T>;
10
- *
11
- * type WithIdentityResult = WithIdentity<number>;
12
- * // Hover on this one shows `SomeType<number>`
13
- *
14
- * type WithoutIdentityResult = WithoutIdentity<number>;
15
- * // Hover on this one shows `WithoutIdentity<number>`
16
- * ```
17
- */
18
- export type Identity<T> = T;
19
- /**
20
- * Collapse an intersection type (`{ foo: string } & { bar: number }`) to a simple type (`{ foo: string, bar: number }`)
21
- */
22
- export type Evaluate<T> = T extends infer U ? {
23
- [K in keyof U]: U[K];
24
- } : never;
25
- /**
26
- * Overwrite fields in `TBase` with fields in `TNew`
27
- */
28
- export type Overwrite<TBase extends object, TNew extends object> = Evaluate<Omit<TBase, keyof TNew> & TNew>;
29
- /**
30
- * Remove fields with `never` type
31
- */
32
- export type OmitNever<T> = Pick<T, {
33
- [K in keyof T]: [T[K]] extends [never] ? never : K;
34
- }[keyof T]>;
35
- /**
36
- * Extract keys of fields in `T` that has type `TValue`
37
- */
38
- export type KeysOfType<T, TValue> = {
39
- [TKey in keyof T]: T[TKey] extends TValue ? TKey : never;
40
- }[keyof T];
41
- export type ValueOrPromise<T> = T | PromiseLike<T>;
42
- /**
43
- * Returns a (fake) value of the given type.
44
- */
45
- export declare function placeholder<T>(): T;
46
- export declare function encodeUtf8(input: string): Uint8Array;
47
- export declare function decodeUtf8(buffer: ArrayBufferView | ArrayBuffer): string;
1
+ /**
2
+ * When evaluating a very complex generic type alias,
3
+ * tell TypeScript to use `T`, instead of current type alias' name, as the result type name
4
+ *
5
+ * Example:
6
+ *
7
+ * ```ts
8
+ * type WithIdentity<T> = Identity<SomeType<T>>;
9
+ * type WithoutIdentity<T> = SomeType<T>;
10
+ *
11
+ * type WithIdentityResult = WithIdentity<number>;
12
+ * // Hover on this one shows `SomeType<number>`
13
+ *
14
+ * type WithoutIdentityResult = WithoutIdentity<number>;
15
+ * // Hover on this one shows `WithoutIdentity<number>`
16
+ * ```
17
+ */
18
+ export type Identity<T> = T;
19
+ /**
20
+ * Collapse an intersection type (`{ foo: string } & { bar: number }`) to a simple type (`{ foo: string, bar: number }`)
21
+ */
22
+ export type Evaluate<T> = T extends infer U ? {
23
+ [K in keyof U]: U[K];
24
+ } : never;
25
+ /**
26
+ * Overwrite fields in `TBase` with fields in `TNew`
27
+ */
28
+ export type Overwrite<TBase extends object, TNew extends object> = Evaluate<Omit<TBase, keyof TNew> & TNew>;
29
+ /**
30
+ * Remove fields with `never` type
31
+ */
32
+ export type OmitNever<T> = Pick<T, {
33
+ [K in keyof T]: [T[K]] extends [never] ? never : K;
34
+ }[keyof T]>;
35
+ /**
36
+ * Extract keys of fields in `T` that has type `TValue`
37
+ */
38
+ export type KeysOfType<T, TValue> = {
39
+ [TKey in keyof T]: T[TKey] extends TValue ? TKey : never;
40
+ }[keyof T];
41
+ export type ValueOrPromise<T> = T | PromiseLike<T>;
42
+ /**
43
+ * Returns a (fake) value of the given type.
44
+ */
45
+ export declare function placeholder<T>(): T;
46
+ export declare function encodeUtf8(input: string): Uint8Array;
47
+ export declare function decodeUtf8(buffer: ArrayBufferView | ArrayBuffer): string;
48
48
  //# sourceMappingURL=utils.d.ts.map
package/esm/utils.js CHANGED
@@ -1,16 +1,16 @@
1
- /**
2
- * Returns a (fake) value of the given type.
3
- */
4
- export function placeholder() {
5
- return undefined;
6
- }
7
- const { TextEncoder, TextDecoder } = globalThis;
8
- const Utf8Encoder = new TextEncoder();
9
- const Utf8Decoder = new TextDecoder();
10
- export function encodeUtf8(input) {
11
- return Utf8Encoder.encode(input);
12
- }
13
- export function decodeUtf8(buffer) {
14
- return Utf8Decoder.decode(buffer);
15
- }
1
+ /**
2
+ * Returns a (fake) value of the given type.
3
+ */
4
+ export function placeholder() {
5
+ return undefined;
6
+ }
7
+ const { TextEncoder, TextDecoder } = globalThis;
8
+ const Utf8Encoder = new TextEncoder();
9
+ const Utf8Decoder = new TextDecoder();
10
+ export function encodeUtf8(input) {
11
+ return Utf8Encoder.encode(input);
12
+ }
13
+ export function decodeUtf8(buffer) {
14
+ return Utf8Decoder.decode(buffer);
15
+ }
16
16
  //# sourceMappingURL=utils.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yume-chan/struct",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "C-style structure serializer and deserializer.",
5
5
  "keywords": [
6
6
  "structure",
@@ -27,16 +27,17 @@
27
27
  "main": "esm/index.js",
28
28
  "types": "esm/index.d.ts",
29
29
  "dependencies": {
30
- "@yume-chan/dataview-bigint-polyfill": "^0.0.18",
30
+ "@yume-chan/dataview-bigint-polyfill": "^0.0.19",
31
31
  "tslib": "^2.4.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@jest/globals": "^29.3.1",
34
+ "@jest/globals": "^29.5.0",
35
35
  "@yume-chan/eslint-config": "^1.0.0",
36
36
  "@yume-chan/tsconfig": "^1.0.0",
37
37
  "cross-env": "^7.0.3",
38
- "eslint": "^8.31.0",
39
- "jest": "^29.3.1",
38
+ "eslint": "^8.36.0",
39
+ "jest": "^29.5.0",
40
+ "prettier": "^2.8.4",
40
41
  "ts-jest": "^29.0.4",
41
42
  "typescript": "^4.9.4"
42
43
  },
@@ -44,6 +45,6 @@
44
45
  "build": "tsc -b tsconfig.build.json",
45
46
  "build:watch": "tsc -b tsconfig.build.json",
46
47
  "test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
47
- "lint": "eslint src/**/*.ts --fix"
48
+ "lint": "eslint src/**/*.ts --fix && prettier src/**/*.ts --write --tab-width 4"
48
49
  }
49
50
  }
@@ -1,10 +1,10 @@
1
- import { type StructFieldValue } from "./field-value.js";
2
- import { type StructOptions } from "./options.js";
3
- import {
4
- type StructAsyncDeserializeStream,
5
- type StructDeserializeStream,
1
+ import type { StructFieldValue } from "./field-value.js";
2
+ import type { StructOptions } from "./options.js";
3
+ import type {
4
+ StructAsyncDeserializeStream,
5
+ StructDeserializeStream,
6
6
  } from "./stream.js";
7
- import { type StructValue } from "./struct-value.js";
7
+ import type { StructValue } from "./struct-value.js";
8
8
 
9
9
  /**
10
10
  * A field definition defines how to deserialize a field.
@@ -1,6 +1,6 @@
1
- import { type StructFieldDefinition } from "./definition.js";
2
- import { type StructOptions } from "./options.js";
3
- import { type StructValue } from "./struct-value.js";
1
+ import type { StructFieldDefinition } from "./definition.js";
2
+ import type { StructOptions } from "./options.js";
3
+ import type { StructValue } from "./struct-value.js";
4
4
 
5
5
  /**
6
6
  * A field value defines how to serialize a field.
@@ -1,5 +1,5 @@
1
- export * from './definition.js';
2
- export * from './field-value.js';
3
- export * from './options.js';
4
- export * from './stream.js';
5
- export * from './struct-value.js';
1
+ export * from "./definition.js";
2
+ export * from "./field-value.js";
3
+ export * from "./options.js";
4
+ export * from "./stream.js";
5
+ export * from "./struct-value.js";
@@ -1,4 +1,4 @@
1
- import { type ValueOrPromise } from "../utils.js";
1
+ import type { ValueOrPromise } from "../utils.js";
2
2
 
3
3
  // TODO: allow over reading (returning a `Uint8Array`, an `offset` and a `length`) to avoid copying
4
4
 
@@ -1,4 +1,4 @@
1
- import { type StructFieldValue } from "./field-value.js";
1
+ import type { StructFieldValue } from "./field-value.js";
2
2
 
3
3
  export const STRUCT_VALUE_SYMBOL = Symbol("struct-value");
4
4
 
package/src/index.ts CHANGED
@@ -10,8 +10,8 @@ declare global {
10
10
  }
11
11
  }
12
12
 
13
- export * from './basic/index.js';
14
- export * from './struct.js';
15
- export { Struct as default } from './struct.js';
16
- export * from './types/index.js';
17
- export * from './utils.js';
13
+ export * from "./basic/index.js";
14
+ export * from "./struct.js";
15
+ export { Struct as default } from "./struct.js";
16
+ export * from "./types/index.js";
17
+ export * from "./utils.js";
package/src/struct.ts CHANGED
@@ -1,14 +1,22 @@
1
+ import type {
2
+ StructAsyncDeserializeStream,
3
+ StructDeserializeStream,
4
+ StructFieldDefinition,
5
+ StructFieldValue,
6
+ StructOptions,
7
+ } from "./basic/index.js";
1
8
  import {
2
9
  STRUCT_VALUE_SYMBOL,
3
10
  StructDefaultOptions,
4
11
  StructValue,
5
- type StructAsyncDeserializeStream,
6
- type StructDeserializeStream,
7
- type StructFieldDefinition,
8
- type StructFieldValue,
9
- type StructOptions,
10
12
  } from "./basic/index.js";
11
13
  import { SyncPromise } from "./sync-promise.js";
14
+ import type {
15
+ BufferFieldSubType,
16
+ FixedLengthBufferLikeFieldOptions,
17
+ LengthField,
18
+ VariableLengthBufferLikeFieldOptions,
19
+ } from "./types/index.js";
12
20
  import {
13
21
  BigIntFieldDefinition,
14
22
  BigIntFieldType,
@@ -18,17 +26,8 @@ import {
18
26
  StringBufferFieldSubType,
19
27
  Uint8ArrayBufferFieldSubType,
20
28
  VariableLengthBufferLikeFieldDefinition,
21
- type BufferFieldSubType,
22
- type FixedLengthBufferLikeFieldOptions,
23
- type LengthField,
24
- type VariableLengthBufferLikeFieldOptions,
25
29
  } from "./types/index.js";
26
- import {
27
- type Evaluate,
28
- type Identity,
29
- type Overwrite,
30
- type ValueOrPromise,
31
- } from "./utils.js";
30
+ import type { Evaluate, Identity, Overwrite, ValueOrPromise } from "./utils.js";
32
31
 
33
32
  export interface StructLike<TValue> {
34
33
  deserialize(
@@ -5,16 +5,15 @@ import {
5
5
  setBigUint64,
6
6
  } from "@yume-chan/dataview-bigint-polyfill/esm/fallback.js";
7
7
 
8
- import {
9
- StructFieldDefinition,
10
- StructFieldValue,
11
- type StructAsyncDeserializeStream,
12
- type StructDeserializeStream,
13
- type StructOptions,
14
- type StructValue,
8
+ import type {
9
+ StructAsyncDeserializeStream,
10
+ StructDeserializeStream,
11
+ StructOptions,
12
+ StructValue,
15
13
  } from "../basic/index.js";
14
+ import { StructFieldDefinition, StructFieldValue } from "../basic/index.js";
16
15
  import { SyncPromise } from "../sync-promise.js";
17
- import { type ValueOrPromise } from "../utils.js";
16
+ import type { ValueOrPromise } from "../utils.js";
18
17
 
19
18
  type DataViewBigInt64Getter = (
20
19
  dataView: DataView,
@@ -1,13 +1,13 @@
1
- import {
2
- StructFieldDefinition,
3
- StructFieldValue,
4
- type StructAsyncDeserializeStream,
5
- type StructDeserializeStream,
6
- type StructOptions,
7
- type StructValue,
1
+ import type {
2
+ StructAsyncDeserializeStream,
3
+ StructDeserializeStream,
4
+ StructOptions,
5
+ StructValue,
8
6
  } from "../../basic/index.js";
7
+ import { StructFieldDefinition, StructFieldValue } from "../../basic/index.js";
9
8
  import { SyncPromise } from "../../sync-promise.js";
10
- import { decodeUtf8, encodeUtf8, type ValueOrPromise } from "../../utils.js";
9
+ import type { ValueOrPromise } from "../../utils.js";
10
+ import { decodeUtf8, encodeUtf8 } from "../../utils.js";
11
11
 
12
12
  /**
13
13
  * Base class for all types that
@@ -1,4 +1,5 @@
1
- import { BufferLikeFieldDefinition, type BufferFieldSubType } from "./base.js";
1
+ import type { BufferFieldSubType } from "./base.js";
2
+ import { BufferLikeFieldDefinition } from "./base.js";
2
3
 
3
4
  export interface FixedLengthBufferLikeFieldOptions {
4
5
  length: number;
@@ -1,16 +1,13 @@
1
- import {
2
- StructFieldValue,
3
- type StructFieldDefinition,
4
- type StructOptions,
5
- type StructValue,
1
+ import type {
2
+ StructFieldDefinition,
3
+ StructOptions,
4
+ StructValue,
6
5
  } from "../../basic/index.js";
7
- import { type KeysOfType } from "../../utils.js";
6
+ import { StructFieldValue } from "../../basic/index.js";
7
+ import type { KeysOfType } from "../../utils.js";
8
8
 
9
- import {
10
- BufferLikeFieldDefinition,
11
- BufferLikeFieldValue,
12
- type BufferFieldSubType,
13
- } from "./base.js";
9
+ import type { BufferFieldSubType } from "./base.js";
10
+ import { BufferLikeFieldDefinition, BufferLikeFieldValue } from "./base.js";
14
11
 
15
12
  export type LengthField<TFields> = KeysOfType<TFields, number | string>;
16
13
 
@@ -1,13 +1,12 @@
1
- import {
2
- StructFieldDefinition,
3
- StructFieldValue,
4
- type StructAsyncDeserializeStream,
5
- type StructDeserializeStream,
6
- type StructOptions,
7
- type StructValue,
1
+ import type {
2
+ StructAsyncDeserializeStream,
3
+ StructDeserializeStream,
4
+ StructOptions,
5
+ StructValue,
8
6
  } from "../basic/index.js";
7
+ import { StructFieldDefinition, StructFieldValue } from "../basic/index.js";
9
8
  import { SyncPromise } from "../sync-promise.js";
10
- import { type ValueOrPromise } from "../utils.js";
9
+ import type { ValueOrPromise } from "../utils.js";
11
10
 
12
11
  export interface NumberFieldType {
13
12
  signed: boolean;
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.4.1/node_modules/tslib/tslib.d.ts","./src/basic/options.ts","./src/basic/struct-value.ts","./src/basic/field-value.ts","./src/utils.ts","./src/basic/stream.ts","./src/basic/definition.ts","./src/basic/index.ts","./src/sync-promise.ts","../dataview-bigint-polyfill/esm/fallback.d.ts","./src/types/bigint.ts","./src/types/buffer/base.ts","./src/types/buffer/fixed-length.ts","./src/types/buffer/variable-length.ts","./src/types/buffer/index.ts","./src/types/number.ts","./src/types/index.ts","./src/struct.ts","./src/index.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"6827c0ba1bb152cd1a57c960babfdbfbd9bb8d6f2eff37c7b3567df511f707ac","signature":"40dd8fe07897a8ccb48ef6c2c1edfb352578cff37a6f9214771c581bdead4cc3","impliedFormat":99},{"version":"8a39ee33b892fe4007e57ff7b90bd3875ecb0439ea4d9ea2cba0192ee5e6b08f","signature":"136e425ab3283e2c3ad367dcc163806bc38ba4b9be8619864610ce9ba87b0c12","impliedFormat":99},{"version":"a1a1527ed1722db62776ac0e4b7588cf9dd4f9bebda24c8bcf52575c6d412217","signature":"cb70adfd6ef035bfde224a4744ba602cfa7b7b6664ff2b5ab174c0ce6563a4e2","impliedFormat":99},{"version":"892a41f637a1eca6b1716efbd8f2a3f1b4429cfde365ef3206185169d5175c6d","signature":"74b6f31e10b8350a035677eff83fe18135fe7b6175e0c85628f44533edeb0558","impliedFormat":99},{"version":"fae22b022eed00a175f2703a613716c3c55fd984729bc34997cd9fb1a5cffc47","signature":"d3d04ae52afd581e14d0bb1a096874909ad806324322331e0732aff90769c622","impliedFormat":99},{"version":"1159ed1132b15f2ebe53f4a6aaa36ba75acc11c61c7b31daf0d82a800f787ea6","signature":"0cef1484af1bf3fa8680fab5883bac1d29f036152890cf824237f83222c77e95","impliedFormat":99},{"version":"fc2e47bddc5026267c39730648cbaa21105facf3731d044da086b0689ebb8b98","signature":"e838e92ee2b6d439178edac035a6661a136d2424d48927833752bfa151ff954f","impliedFormat":99},{"version":"8d53ec5eab883f7e39ec64dcaa74f263781edb9877bb69ed7f13885954f67428","signature":"dbff4204e72de7f717ea4165e39cf1c53a62568e2ff3df4d33d64fc01388d444","impliedFormat":99},{"version":"ea9a35cd9e4fc405c1e35f2ab6d2219205cc1d0a99338af5d462472ebcfbd855","impliedFormat":99},{"version":"931f46f21849c838ee26be4395e49332ffc53f1a0398754980ad41053a074470","signature":"820d21651484c4162dde6e80f1e4e6f50f0d28378342f55f2b41d06cef28aa14","impliedFormat":99},{"version":"bebff7298c0c8522e49cbef227cfa581bbb07eef2dae19200f123beefc773439","signature":"33f7843a0c8be2fad88ca47b46987b0d0bf0399d911c8455efc963220d0807e0","impliedFormat":99},{"version":"46d824dd7596ab0c0e7502a68c8bb2118ce0db5a872c6c3e8273ac6f8be641f7","signature":"01dcb3b2c75958a86a3c7edb7e36264dfb4c0283efe3379f8b88394d108c0fba","impliedFormat":99},{"version":"2c8dc594c735c2ad8df3cc16055e2c0970178855091ec292957b10b761ef2601","signature":"1d6b004fcd500bdb2438f732596c9b721d9db8822706fed42a4338e45859f4fa","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","signature":"02ca393ed379c3ac738e90a5be95e148ebf23aab5271b6a9df3c5626939b59f7","impliedFormat":99},{"version":"47ca0a4bbb45b628eae51dcce7cbb504d57f26c2afeee5b7fed655bfc6336710","signature":"97d4063d929d69a8a372382e6c80cd449f79fd9b15cc8d290ae77086962df21c","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","signature":"832c9c8fdcdcdc2f87d22997be7ab5d2a585fbc2d65e18deff0d19e5f1d91f7c","impliedFormat":99},{"version":"72b0fe1a53aa598d74c08705c94596164f27ac7deee57241d64e49e1a4edb632","signature":"092e522e3c5ee89b165dbafef7c68c78bd63a90f9f0373f1088e35ec849a33e6","impliedFormat":99},{"version":"5aa8aa37aaa4023f13a2b0a9bbd17a93b4a14bd10034db59ff0c74a22311279b","signature":"34a143ee98281f548a93d76812182e6bd28efde9e79494e771d28149f852c709","affectsGlobalScope":true,"impliedFormat":99}],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[55,56,57,58,60],[55,56,57,61],[55,56,57,58,60,61],[55],[55,59],[55,58],[55,59,62,71,72],[55,59,62,63,71],[55,59,62,63,64],[55,59,62,63],[55,66],[55,66,67,68],[55,59,62,66],[55,65,69,70],[56,57,58,60],[56,57,61],[56,57,58,60,61],[59],[58],[59,62,71,72],[59,62,71],[62],[66],[66,67,68],[59,62,66],[65,69,70]],"referencedMap":[[61,1],[58,2],[62,3],[56,4],[60,5],[57,6],[73,7],[72,8],[63,4],[65,9],[66,10],[67,11],[69,12],[68,13],[71,14],[70,10],[59,4]],"exportedModulesMap":[[61,15],[58,16],[62,17],[60,18],[57,19],[73,20],[72,21],[65,22],[66,22],[67,23],[69,24],[68,25],[71,26],[70,22]],"semanticDiagnosticsPerFile":[55,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,53,1,10,54,64,61,58,62,56,60,57,73,72,63,65,66,67,69,68,71,70,59],"latestChangedDtsFile":"./esm/index.d.ts"},"version":"4.9.4"}
1
+ {"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.0/node_modules/tslib/tslib.d.ts","./src/basic/options.ts","./src/basic/struct-value.ts","./src/basic/field-value.ts","./src/utils.ts","./src/basic/stream.ts","./src/basic/definition.ts","./src/basic/index.ts","./src/sync-promise.ts","../dataview-bigint-polyfill/esm/fallback.d.ts","./src/types/bigint.ts","./src/types/buffer/base.ts","./src/types/buffer/fixed-length.ts","./src/types/buffer/variable-length.ts","./src/types/buffer/index.ts","./src/types/number.ts","./src/types/index.ts","./src/struct.ts","./src/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"6827c0ba1bb152cd1a57c960babfdbfbd9bb8d6f2eff37c7b3567df511f707ac","signature":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"0faea90f52dbfe70506b89beaa77b634c362ba5a729871d8e212229614f2a663","signature":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"10c4d9b9b11d43e0a9211b48d74670331328af74eb13df9434c47375af9e0564","signature":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"892a41f637a1eca6b1716efbd8f2a3f1b4429cfde365ef3206185169d5175c6d","signature":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"2969f979cd4199c23884419169eca44d60afce9186f873f4e967e65bbdc2527e","signature":"12f034074aafde1bb145598fb874ae56b0b53a1c3ed0434a5d3ea8eb03c62b72","impliedFormat":99},{"version":"37ce5ae5b994e8fd4c5aa9de4b3eed9c96b24fd4e04113f8e53d2c3b7029978c","signature":"cc1d94a37d0dde4d5a85a35aa9133abdb9696987960116e29140c08ebdcdd869","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"8d53ec5eab883f7e39ec64dcaa74f263781edb9877bb69ed7f13885954f67428","signature":"15cc3dd9a039f8ba1628d1e27cdf4b45582fc387a4241ebb65eff1786b89f522","impliedFormat":99},{"version":"135245a0c940a2c51b6c291eda3b51298a43c8ebb5c8f52adc8875b8f19cb898","impliedFormat":99},{"version":"747b2207ca934da0a8d1c90beb105d4fb10593dbe8894372152b57ac46d9e6e2","signature":"152e4cab74b292a4de587e604c6133bab4525f0de7b32dfaf4a211de799ef262","impliedFormat":99},{"version":"1f4f22294213ac50c7292e33c444c43b47e585281be9783d10b99f5efaee4730","signature":"1b1e7a0b9362425c6be672b9fcf1fb2763df4e959ce840c9fdce190eeb8905ba","impliedFormat":99},{"version":"fbe980f55387478b0acb134c2679ab446342cbd7446b2b8161a86b1f2982e6b2","signature":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"8cf8d84d1e388c17883e1e1a23930afabc27f4d46835c4f351b88f903eb4e221","signature":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"158bbed689d3ac1c39dda7afd9f94993157dd07551729805b191422a5afc2e89","signature":"c4b01fc816c556f2479d264535644a9a4ba578e241027c21b2a2229b7647887e","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"c6037e63de131905e0c593e931b48732e126100eb84d4b48fb496f222d1f9ef9","signature":"c87cd07810cf18ff00240875c8e7b3249bb5e1dd15418193d27265586ba69179","impliedFormat":99},{"version":"024b88f42c3710684b8176eae19b7556ed437cafeebf43eb31552589f7651ef7","signature":"b338c41818e59749b93f43406018eaa613a8ced869ad63873f2cea90643af5a1","affectsGlobalScope":true,"impliedFormat":99}],"root":[[61,68],[70,78]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[60,61,62,63,65],[60,61,62,66],[60,61,62,63,65,66],[60],[60,64],[60,63],[60,64,67,76,77],[60,64,67,68,76],[60,64,67,68,69],[60,64,67,68],[60,71],[60,71,72,73],[60,64,67,71],[60,70,74,75],[61,62,63,65],[61,62,66],[64],[63],[64,67,76,77],[64,67,76],[67],[71],[64,67,71]],"referencedMap":[[66,1],[63,2],[67,3],[61,4],[65,5],[62,6],[78,7],[77,8],[68,4],[70,9],[71,10],[72,11],[74,12],[73,13],[76,14],[75,10],[64,4]],"exportedModulesMap":[[66,15],[63,16],[67,3],[65,17],[62,18],[78,19],[77,20],[70,21],[71,21],[72,22],[74,12],[73,23],[76,14],[75,21]],"semanticDiagnosticsPerFile":[60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,69,66,63,67,61,65,62,78,77,68,70,71,72,74,73,76,75,64],"latestChangedDtsFile":"./esm/struct.d.ts"},"version":"5.0.3"}