UNPKG

para-bridge-demo

Version:

a bridge api for js-ios/andriod rest

18 lines (15 loc) 283 B
``` tsx interface IAppInfoItem { name: string; } interface IReadInstalledAppInfoResult { packageList: IAppInfoItem[]; } private getInstalledAppInfo = () => { readInstalledAppInfo().then(result => { this.setState({ value: JSON.stringify(result), }); }); } ```