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
/
App.d.ts
12 lines
(11 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
FilePicker
}
from
"../types"
;
import
Media
from
"../media"
; interface
Props
{
filePickers
:
FilePicker
[];
media
:
Media
; }
/** * Constructs the windows to render */
export
default
function
App
(
{ media, filePickers }: Props
):
import
(
"react"
).
ReactPortal
|
null
;
export
{};