getAuthTokenCallback type
Fonction de rappel utilisée pour acquérir un jeton d’authentification en mode d’authentification anonyme. Résolvez avec le jeton d’authentification ou rejetez les erreurs éventuelles.
type getAuthTokenCallback = (
resolve: (value?: string) => void,
reject: (reason?: any) => void,
map: Map
) => void