mike-sso
v0.1.6
Published
This library requires the following peer dependency to be installed in your application:
Downloads
644
Readme
Mike SSO
Required Peer Dependencies
This library requires the following peer dependency to be installed in your application:
npm install jwt-decodefor yml
3. Verify Library Code
Ensure the library imports jwt-decode without issues. Example:
import jwtDecode from 'jwt-decode';
export class JwtService {
decodeToken(token: string): any {
return jwtDecode(token);
}
}