chore: Make isRefreshTokenRequested optional for IAuth

This commit is contained in:
Faruk AYDIN
2022-11-20 22:57:08 +01:00
committed by Ali BARIN
parent 6bf0e799a1
commit d3e13c30a6

View File

@@ -182,7 +182,7 @@ export interface IAuth {
verifyCredentials($: IGlobalVariable): Promise<void>;
isStillVerified($: IGlobalVariable): Promise<boolean>;
refreshToken?($: IGlobalVariable): Promise<void>;
isRefreshTokenRequested: boolean;
isRefreshTokenRequested?: boolean;
fields: IField[];
authenticationSteps?: IAuthenticationStep[];
reconnectionSteps?: IAuthenticationStep[];