builder.io 1.18.7 → 1.18.8

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.
@@ -13,7 +13,7 @@ export declare const discoverTokens: (sys: DevToolsSys, credentials: Credentials
13
13
  }) => Promise<{
14
14
  tokenGroupsToIndex: TokenTask[];
15
15
  discoveredTokenGroups: TokenTask[];
16
- }>;
16
+ } | undefined>;
17
17
  export declare const processTokens: (sys: DevToolsSys, credentials: Credentials, sessionId: string, group: TokenTask, opts: {
18
18
  designSystemId: string;
19
19
  designSystemPackage?: string;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Get a free port on the system (>= 40000)
3
+ * Tests ports by attempting to bind to them, ensuring they're actually available
4
+ * Keeps track of recently allocated ports to prevent race conditions
5
+ */
6
+ export declare function freePort(): Promise<number>;