We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a567e79 commit 4e90580Copy full SHA for 4e90580
Abp/Framework/scripts/abp.d.ts
@@ -111,6 +111,19 @@ declare namespace abp {
111
function getToken(): string;
112
113
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;
127
}
128
129
namespace features {
@@ -452,4 +465,4 @@ declare namespace abp {
452
465
453
466
454
467
455
-}
468
+}
0 commit comments