API Docs for: 2.0.20133.2
Show:

File: src\internal\ui\authInfo.ts

/// <reference path="constants.ts" />

/**
 * @module UI
 * @namespace ui
 */
namespace internal.ui {
    /**
     * Authentication information
     * @class AuthInfo
     * @static
     */
    export interface AuthInfo {
        /**
         * Auth type
         * @property {string} type
         */
        type: string;

        /**
         * Authentication token
         * @property {string} token
         */
        token?: string;
    }
}