UNPKG
learn-template
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
React Native Base Template
github.com/package-dev/learn-template
package-dev/learn-template
learn-template
/
template
/
public
/
@types
/
react-native-get-values
/
index.d.ts
5 lines
(4 loc)
•
223 B
TypeScript
View Raw
1
2
3
4
5
import
{
Platform
}
from
"react-native"
;
declare
const
iOSGetter
:
(
key
:
string
) =>
Promise
<
any
>;
declare
const
androidGetter
:
(
key
:
string
) =>
Promise
<
any
>;
export
default
Platform
.
OS
===
"ios"
? iOSGetter : androidGetter;