10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
import * as React from 'react';
|
|
|
|
declare module 'react' {
|
|
namespace JSX {
|
|
interface IntrinsicElements {
|
|
'dotlottie-wc': any;
|
|
}
|
|
}
|
|
}
|