constructor()

in src/connector.ts [86:91]


  constructor(promise: Promise<CloudSQLInstance>) {
    this.promise = promise;
    this.promise
      .then(inst => (this.instance = inst))
      .catch(err => (this.err = err));
  }