matrix-dimension/src/OpenID.js

11 lines
199 B
JavaScript
Raw Normal View History

/**
* Serves the purpose of being a documentation endpoint
*/
class OpenID {
access_token = "";
token_type = "";
matrix_server_name = "";
expires_in = 0;
}
module.exports = OpenID;