mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-11 17:03:33 -04:00
22 lines
455 B
TypeScript
22 lines
455 B
TypeScript
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;
|
|
}
|