UNPKG
para-bridge-demo
Version:
latest (1.7.8)
1.7.8
1.7.6
1.7.4
1.7.3
1.7.2
1.7.1
1.6.2
1.6.1
1.5.3
1.5.2
1.5.1
1.5.0
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
a bridge api for js-ios/andriod rest
para-bridge-demo
/
src
/
client
/
modules
/
plugin_util
/
read-installed-app-info
/
read-installed-app-info.md
18 lines
(15 loc)
•
283 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
``` tsx
interface
IAppInfoItem
{ name: string; }
interface
IReadInstalledAppInfoResult
{ packageList: IAppInfoItem[]; }
private
getInstalledAppInfo = () => { readInstalledAppInfo().then(result => {
this
.setState({ value: JSON.stringify(result), }); }); } ```