@types/hotwired__turbo 8.0.3 → 8.0.4
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.
- hotwired__turbo/README.md +2 -2
- hotwired__turbo/index.d.ts +6 -0
- hotwired__turbo/package.json +7 -2
hotwired__turbo/README.md
CHANGED
|
@@ -8,8 +8,8 @@ This package contains type definitions for @hotwired/turbo (https://turbo.hotwir
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hotwired__turbo.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Sat, 25 Jan 2025 22:34:53 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
|
15
|
-
These definitions were written by [Gareth Jones](https://github.com/G-Rath),
|
|
15
|
+
These definitions were written by [Gareth Jones](https://github.com/G-Rath), [Luke Davia](https://github.com/lukeify), and [Alex Coles](https://github.com/myabc).
|
hotwired__turbo/index.d.ts
CHANGED
|
@@ -218,6 +218,11 @@ export type TurboFetchRequestErrorEvent = CustomEvent<{
|
|
|
218
218
|
error: Error;
|
|
219
219
|
}>;
|
|
220
220
|
|
|
221
|
+
export interface TurboElementTagNameMap {
|
|
222
|
+
"turbo-frame": FrameElement;
|
|
223
|
+
"turbo-stream": StreamElement;
|
|
224
|
+
}
|
|
225
|
+
|
|
221
226
|
export interface TurboElementEventMap {
|
|
222
227
|
"turbo:before-frame-render": TurboBeforeFrameRenderEvent;
|
|
223
228
|
"turbo:before-fetch-request": TurboBeforeFetchRequestEvent;
|
|
@@ -245,6 +250,7 @@ export interface TurboGlobalEventHandlersEventMap extends TurboElementEventMap {
|
|
|
245
250
|
|
|
246
251
|
declare global {
|
|
247
252
|
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
253
|
+
interface HTMLElementTagNameMap extends TurboElementTagNameMap {}
|
|
248
254
|
interface ElementEventMap extends TurboElementEventMap {}
|
|
249
255
|
interface GlobalEventHandlersEventMap extends TurboGlobalEventHandlersEventMap {}
|
|
250
256
|
/* eslint-enable @typescript-eslint/no-empty-interface */
|
hotwired__turbo/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/hotwired__turbo",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.4",
|
|
4
4
|
"description": "TypeScript definitions for @hotwired/turbo",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/hotwired__turbo",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,6 +14,11 @@
|
|
|
14
14
|
"name": "Luke Davia",
|
|
15
15
|
"githubUsername": "lukeify",
|
|
16
16
|
"url": "https://github.com/lukeify"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Alex Coles",
|
|
20
|
+
"githubUsername": "myabc",
|
|
21
|
+
"url": "https://github.com/myabc"
|
|
17
22
|
}
|
|
18
23
|
],
|
|
19
24
|
"main": "",
|
|
@@ -26,6 +31,6 @@
|
|
|
26
31
|
"scripts": {},
|
|
27
32
|
"dependencies": {},
|
|
28
33
|
"peerDependencies": {},
|
|
29
|
-
"typesPublisherContentHash": "
|
|
34
|
+
"typesPublisherContentHash": "0d52f0788ffe8fffc814644e7fe2413384012ff99f8dbeffa538f580f07fd0c5",
|
|
30
35
|
"typeScriptVersion": "5.0"
|
|
31
36
|
}
|