Skip to content

Commit 4e90580

Browse files
authored
Restore declarations that were added directly
1 parent a567e79 commit 4e90580

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

Abp/Framework/scripts/abp.d.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,19 @@ declare namespace abp {
111111
function getToken(): string;
112112

113113
function clearToken(): void;
114+
115+
let refreshTokenCookieName: string;
116+
117+
/**
118+
* Saves refreshToken token.
119+
* @param refreshToken The token to be saved.
120+
* @param expireDate Optional expire date. If not specified, token will be deleted at end of the session.
121+
*/
122+
function setRefreshToken(refreshToken: string, expireDate?: Date): void;
123+
124+
function getRefreshToken(): string;
125+
126+
function clearRefreshToken(): void;
114127
}
115128

116129
namespace features {
@@ -452,4 +465,4 @@ declare namespace abp {
452465

453466
}
454467

455-
}
468+
}

0 commit comments

Comments
 (0)