-
Notifications
You must be signed in to change notification settings - Fork 189
Open
Labels
Description
Is your feature request related to a problem? Please describe...
in the .d.ts it is marked as static
static CanonicalizationAlgorithms: { [uri: string]: new() => TransformationAlgorithm };
static HashAlgorithms: { [uri: string]: new() => HashAlgorithm };
static SignatureAlgorithms: { [uri: string]: new() => SignatureAlgorithm };
but I can't access them without creating a SignedXml instance
example
SignedXml.CanonicalizationAlgorithms: breaks
but
const signedXml = new SignedXml();
signedXml.CanonicalizationAlgorithms works
Describe teh solution you'd like...
add missing static property
Describe the alternatives you've considered...
creating an instance