get app()

in packages/enterprise-search/src/index.ts [78:87]


  get app (): AppSearchClient {
    let client = this[kAppSearch]
    if (client === null) {
      client = new AppSearchClient(this[kOptions], {
        connectionPool: this[kConnectionPool],
        diagnostic: this.diagnostic
      })
    }
    return client
  }