UNPKG
react-native-svg-animation-fix
Version:
latest (12.1.1)
12.1.1
SVG library for react-native
github.com/bardliu/react-native-svg
bardliu/react-native-svg
react-native-svg-animation-fix
/
lib
/
typescript
/
elements
/
Stop.d.ts
12 lines
(11 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Component
}
from
'react'
;
declare
type
StopProps
= {
parent
?:
Component
; };
export
default
class
Stop
extends
Component
<
StopProps
, {}> {
props
:
StopProps
;
static
displayName
:
string
;
setNativeProps
:
() =>
void
;
render
():
null
; }
export
{};