Skip to content

[ENHANCEMENT]: missing static for some fields #483

Description

@sibelius

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions