@xevolab/jades
Version:
JAdES Digital Signatures compatible with the ETSI TS 119 182-1 Standard
16 lines (15 loc) • 364 B
TypeScript
/**
* This class is used to manage the unprotected headers of a token.
* Their validation is handled by the JSON schema.
*/
export default class UnprotectedHeaders {
private header?;
constructor(p: any);
/**
* Get the unprotected headers of the token.
*
* @returns {Object}
*/
getHeaders(): Object;
toString(): string;
}