We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 421a969 commit 68604d4Copy full SHA for 68604d4
1 file changed
libs/parsing/index/src/lib/idl-parsed-cache.class.ts
@@ -239,7 +239,9 @@ export class IDLParsedCache {
239
240
// compress the keys
241
for (let i = 0; i < COMPRESS_THESE.length; i++) {
242
- parsed[COMPRESS_THESE[i]] = JSON.stringify(parsed[COMPRESS_THESE[i]]);
+ (parsed as any)[COMPRESS_THESE[i]] = JSON.stringify(
243
+ (parsed as any)[COMPRESS_THESE[i]],
244
+ );
245
}
246
247
// return
@@ -267,7 +269,9 @@ export class IDLParsedCache {
267
269
268
270
// unpack the keys
271
- parsed[COMPRESS_THESE[i]] = JSON.parse(parsed[COMPRESS_THESE[i]]);
272
+ (parsed as any)[COMPRESS_THESE[i]] = JSON.parse(
273
274
275
276
277
0 commit comments