``` tsx
interface IAppInfoItem {
  name: string;
}

interface IReadInstalledAppInfoResult {
  packageList: IAppInfoItem[];
}

private getInstalledAppInfo = () => {
  readInstalledAppInfo().then(result => {
    this.setState({
      value: JSON.stringify(result),
    });
  });
}

```