@nolikein/types-livewire3 2.0.1 → 2.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@ Now all your "LivewireMethods" interfaces should be a `Record<string, (...args:
8
8
 
9
9
  This means your code pass from:
10
10
 
11
- ```typescript
11
+ ```ts
12
12
  interface LivewireMethods {
13
13
  open: ({ state: boolean })
14
14
  }
@@ -16,7 +16,7 @@ interface LivewireMethods {
16
16
 
17
17
  To:
18
18
 
19
- ```typescript
19
+ ```ts
20
20
  interface LivewireMethods {
21
21
  open: (state: boolean) => ({ state: boolean })
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nolikein/types-livewire3",
3
- "version": "2.0.1",
3
+ "version": "2.0.4",
4
4
  "description": "Typescript content for Laravel Livewire 3",
5
5
  "license": "MIT",
6
6
  "author": "Côme Wasik",