mirror of
https://github.com/versia-pub/server.git
synced 2026-01-26 12:16:01 +01:00
7 lines
76 B
TypeScript
7 lines
76 B
TypeScript
/**
|
|
* The type of token.
|
|
*/
|
|
export enum TokenType {
|
|
BEARER = "Bearer",
|
|
}
|