UNPKG

matrix-js-sdk

Version:
9 lines (8 loc) 263 B
export interface IIdentityServerProvider { /** * Gets an access token for use against the identity server, * for the associated client. * @returns {Promise<string>} Resolves to the access token. */ getAccessToken(): Promise<string>; }