3
0
Fork 0
mirror of https://gitea.com/docker/build-push-action.git synced 2024-11-26 11:29:38 +01:00
docker-build-push/src/github.ts

10 lines
200 B
TypeScript
Raw Normal View History

import jwt_decode, {JwtPayload} from 'jwt-decode';
interface Jwt extends JwtPayload {
ac?: string;
}
export const parseRuntimeToken = (token: string): Jwt => {
return jwt_decode<Jwt>(token);
};