UNPKG
mmr-gl-react
Version:
latest (0.0.12)
0.0.12
0.0.8
0.0.5
React components for MMR GL JS-compatible libraries
mmr-gl-react
/
dist
/
esm
/
components
/
source.d.ts
8 lines
(7 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
ISource
,
CustomSource
}
from
'../types'
;
export
type
SourceProps
<
SourceT
> = (
SourceT
|
CustomSource
) & {
id
?:
string
;
children
?:
any
; };
declare
function
Source
<
SourceT
extends
ISource
>(
props
:
SourceProps
<
SourceT
>):
any
;
export
default
Source
;