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