Skip to content

Commit b153c1d

Browse files
committed
Changed type of Superforms.Message to avoid errors.
1 parent 7c0eda8 commit b153c1d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ declare global {
1010
// interface Platform {}
1111
}
1212
namespace Superforms {
13-
type Message = string;
13+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
14+
type Message = any;
1415
}
1516
}
1617

0 commit comments

Comments
 (0)