0.0.8 • Published 4 months ago
mike-sso v0.0.8
Mike SSO
Required Peer Dependencies
This library requires the following peer dependency to be installed in your application:
npm install jwt-decode
for 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);
}
}