2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-06-27 15:23:11 +00:00
This commit is contained in:
2020-11-15 04:26:20 +03:00
parent a00b366d30
commit ec143272ae
20 changed files with 263 additions and 9499 deletions

View File

@ -31,6 +31,8 @@ export default class Authentication
{
constructor(type)
{
this.method = 0;
this.tokenIndex = 0;
this.type = type;
this.state = 0;
this.domain = null;

View File

@ -0,0 +1,7 @@
export default
{
None: 0,
Certificate: 1,
Credentials: 2,
Token: 3
};