@soundify/shared
Advanced tools
Comparing version 0.0.36 to 0.0.37
@@ -5,3 +5,3 @@ { | ||
"name": "@soundify/shared", | ||
"version": "0.0.36", | ||
"version": "0.0.37", | ||
"description": "⚙️ Shared types and functions for soundify packages", | ||
@@ -8,0 +8,0 @@ "license": "MIT", |
@@ -48,9 +48,7 @@ export type SearchParam = string | number | boolean | undefined | string[]; | ||
* Function that gives you access token. | ||
*/ | ||
getAccessToken: ( | ||
/** | ||
* Does the service have to refresh the token, or give you a cached token | ||
* | ||
* @param forceRefresh Does the service have to refresh the token, or give you a cached token | ||
* @default false | ||
*/ | ||
forceRefresh?: boolean) => Promise<string>; | ||
getAccessToken: (forceRefresh?: boolean) => Promise<string>; | ||
} |
4573
69