UNPKG
@iblai/iblai-web-mentor
Version:
latest (2.0.1)
2.0.1
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.5
1.2.3
IBL AI Mentor
@iblai/iblai-web-mentor
/
types.d.ts
13 lines
(10 loc)
•
291 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
from
"react"
;
import
{
MentorAIProps
}
from
"./src/mentor-ai"
;
// Ensure this imports the correct type
declare
global
{
namespace
JSX
{
interface
IntrinsicElements
{
"mentor-ai"
:
Partial
<
MentorAIProps
> &
React
.
HTMLAttributes
<
MentorAIProps
>; } } }
export
{};