mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-18 13:28:12 -04:00
Move shared to core folder (#1404)
This commit is contained in:
21
core/models/src/webapi/RefreshToken.ts
Normal file
21
core/models/src/webapi/RefreshToken.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export type RefreshToken = {
|
||||
/**
|
||||
* Gets or sets the unique identifier for the refresh token.
|
||||
*/
|
||||
id: string;
|
||||
|
||||
/**
|
||||
* Gets or sets the device identifier associated with the refresh token.
|
||||
*/
|
||||
deviceIdentifier: string;
|
||||
|
||||
/**
|
||||
* Gets or sets the expiration date of the refresh token.
|
||||
*/
|
||||
expireDate: string;
|
||||
|
||||
/**
|
||||
* Gets or sets the creation date of the refresh token.
|
||||
*/
|
||||
createdAt: string;
|
||||
}
|
||||
Reference in New Issue
Block a user