mbeauv/urbanoe-model

View on GitHub
src/LoginInfo.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow

/**
 * The LoginInfo structure contains information from the login operation.
 */
export type LoginInfo = {

  /** Token for the user. */
  +authToken: string,

  /** Identifier for the user. */
  +endUserId: number,

};