We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613f029 commit 3ba8a15Copy full SHA for 3ba8a15
1 file changed
example/src/pages/OutOfBandAssetsWithSuspense.tsx
@@ -67,7 +67,11 @@ const ImageURLSlow =
67
`https://app.requestly.io/delay/${delay}/https://picsum.photos/id/374/500/500` as const;
68
const ImageInvalidURL = 'not-a-valid-url' as const;
69
70
-type ImageURLS = typeof ImageURL1 | typeof ImageURL2 | typeof ImageURLSlow;
+type ImageURLS =
71
+ | typeof ImageURL1
72
+ | typeof ImageURL2
73
+ | typeof ImageURLSlow
74
+ | typeof ImageInvalidURL;
75
76
const imagePromises = new Map<string, Promise<RiveImage>>();
77
0 commit comments