server/database/entities/Token.ts

7 lines
79 B
TypeScript
Raw Normal View History

2023-09-28 20:19:21 +02:00
/**
* The type of token.
*/
2023-10-01 04:35:37 +02:00
export enum TokenType {
2024-04-07 07:30:49 +02:00
BEARER = "Bearer",
2023-09-28 20:19:21 +02:00
}