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
[Edit this section](https://github.com/QwikDev/qwik/tree/main/packages/qwik/src/core/shared/jsx/types/jsx-qwik-events.ts)
3264
3263
3264
+
## QwikResumeEvent
3265
+
3266
+
Emitted by qwik-core on the container element when it resumes from a paused state. You cannot put a Qwik event handler on the container so you must listen on the document instead.
3267
+
3268
+
```typescript
3269
+
exporttypeQwikResumeEvent = CustomEvent<{}>;
3270
+
```
3271
+
3272
+
[Edit this section](https://github.com/QwikDev/qwik/tree/main/packages/qwik/src/core/shared/jsx/types/jsx-qwik-events.ts)
3273
+
3265
3274
## QwikSubmitEvent
3266
3275
3267
3276
> Warning: This API is now obsolete.
@@ -3293,7 +3302,7 @@ export type QwikSVGElements = {
3293
3302
3294
3303
## QwikSymbolEvent
3295
3304
3296
-
Emitted by qwik-loader when a module was lazily loaded
3305
+
Emitted by qwik-loader on document when a module was lazily loaded
0 commit comments