@rpack-dev/core 0.2.0-canary.21 → 0.2.0-canary.22

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.
@@ -127,6 +127,7 @@ export declare abstract class RPPlatform {
127
127
  abstract createRPackThread(name: string): Promise<RPackLocalThread>;
128
128
  abstract restart(): void;
129
129
  abstract getUnserializableConstants(): any[];
130
+ abstract getUnserializableTypes(): any[];
130
131
  abstract addWindowFocusHandler(handler: () => void): void;
131
132
  abstract removeWindowFocusHandler(handler: () => void): void;
132
133
  abstract addWindowUnfocusHandler(handler: () => void): void;
@@ -1258,6 +1259,7 @@ export declare class SerializationManager {
1258
1259
  private readonly wellKnownMap;
1259
1260
  private readonly wellKnownReverseMap;
1260
1261
  private readonly blockedConstants;
1262
+ private readonly blockedTypes;
1261
1263
  private readonly typedArrayConstructors;
1262
1264
  constructor(rpack: RPack);
1263
1265
  private mapWellKnown;
@@ -1274,6 +1276,7 @@ export declare class SerializationManager {
1274
1276
  objectMode?: "registry" | "default";
1275
1277
  }): Promise<SerializedObject | SerializedRegistryData>;
1276
1278
  private isTypedArray;
1279
+ private isBlockedPrototype;
1277
1280
  serialize<T extends Serializable>(thread: Thread, target: T, options?: {
1278
1281
  objectMode?: "registry" | "default";
1279
1282
  }): Promise<MappedSerializedData<T>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpack-dev/core",
3
- "version": "0.2.0-canary.21",
3
+ "version": "0.2.0-canary.22",
4
4
  "description": "",
5
5
  "license": "LGPL-3.0-or-later",
6
6
  "repository": {