server/database/entities/Token.ts

7 lines
76 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 {
BEARER = "Bearer",
2023-09-28 20:19:21 +02:00
}