UNPKG
@exezt-/webamp-custom
Version:
latest (0.0.2-next-d2fcbc6)
0.0.2-next-d2fcbc6
0.0.1-next-d2fcbc6
Winamp 2 implemented in HTML5 and JavaScript
@exezt-/webamp-custom
/
built
/
types
/
js
/
components
/
ClickedDiv.d.ts
7 lines
(6 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
interface
Props
extends
React
.
HTMLAttributes
<
HTMLDivElement
> {
className
?:
string
;
onPointerDown
?:
(
e
:
React
.
PointerEvent
<
HTMLDivElement
>
) =>
void
; }
declare
function
ClickedDiv
(
props
:
Props
):
import
(
"react/jsx-runtime"
).
JSX
.
Element
;
export
default
ClickedDiv
;