You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The **`postMessage()`** method of the Worker interface sends a message to the worker. The first parameter is the data to send to the worker. The data may be any JavaScript object that can be handled by the structured clone algorithm.
40507
40507
*
@@ -42929,8 +42929,8 @@ type NamedCurve = string;
42929
42929
type OffscreenRenderingContext = OffscreenCanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
42930
42930
type OnBeforeUnloadEventHandler = OnBeforeUnloadEventHandlerNonNull | null;
42931
42931
type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
42932
-
type OptionalPostfixToken = ` ${T}` | "";
42933
-
type OptionalPrefixToken = `${T} ` | "";
42932
+
type OptionalPostfixToken<T extends string> = ` ${T}` | "";
42933
+
type OptionalPrefixToken<T extends string> = `${T} ` | "";
42934
42934
type PerformanceEntryList = PerformanceEntry[];
42935
42935
type PublicKeyCredentialClientCapabilities = Record<string, boolean>;
42936
42936
type RTCRtpReceiverTransform = RTCRtpScriptTransform;
* The **`postMessage()`** method of the Worker interface sends a message to the worker. The first parameter is the data to send to the worker. The data may be any JavaScript object that can be handled by the structured clone algorithm.
0 commit comments