mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
export enum AuthStrategy {
|
|
// Internal
|
|
AccessToken = "access_token",
|
|
RefreshToken = "refresh_token",
|
|
|
|
// Auth Provider
|
|
Spotify = "spotify",
|
|
}
|