Skip to content

fix: CryptoKey.algorithm type and other interfaces #270

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/utils/parser/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export const DOC_TYPES_MAPPING_NODE_MODULES = {
AbortController: 'globals.html#class-abortcontroller',
AbortSignal: 'globals.html#class-abortsignal',

Algorithm: 'webcrypto.html#class-algorithm',
AlgorithmIdentifier: 'webcrypto.html#class-algorithmidentifier',
AsyncHook: 'async_hooks.html#async_hookscreatehookcallbacks',
AsyncLocalStorage: 'async_context.html#class-asynclocalstorage',
Expand All @@ -121,6 +122,7 @@ export const DOC_TYPES_MAPPING_NODE_MODULES = {
AesCbcParams: 'webcrypto.html#class-aescbcparams',
AesCtrParams: 'webcrypto.html#class-aesctrparams',
AesGcmParams: 'webcrypto.html#class-aesgcmparams',
AesKeyAlgorithm: 'webcrypto.html#class-aeskeyalgorithm',
AesKeyGenParams: 'webcrypto.html#class-aeskeygenparams',

Blob: 'buffer.html#class-blob',
Expand Down Expand Up @@ -154,6 +156,7 @@ export const DOC_TYPES_MAPPING_NODE_MODULES = {
ECDH: 'crypto.html#class-ecdh',
EcdhKeyDeriveParams: 'webcrypto.html#class-ecdhkeyderiveparams',
EcdsaParams: 'webcrypto.html#class-ecdsaparams',
EcKeyAlgorithm: 'webcrypto.html#class-eckeyalgorithm',
EcKeyGenParams: 'webcrypto.html#class-eckeygenparams',
EcKeyImportParams: 'webcrypto.html#class-eckeyimportparams',
Ed448Params: 'webcrypto.html#class-ed448params',
Expand All @@ -172,6 +175,7 @@ export const DOC_TYPES_MAPPING_NODE_MODULES = {
HkdfParams: 'webcrypto.html#class-hkdfparams',
Hmac: 'crypto.html#class-hmac',
HmacImportParams: 'webcrypto.html#class-hmacimportparams',
HmacKeyAlgorithm: 'webcrypto.html#class-hmackeyalgorithm',
HmacKeyGenParams: 'webcrypto.html#class-hmackeygenparams',

Http2SecureServer: 'http2.html#class-http2secureserver',
Expand All @@ -184,6 +188,7 @@ export const DOC_TYPES_MAPPING_NODE_MODULES = {
IntervalHistogram:
'perf_hooks.html#class-intervalhistogram-extends-histogram',

KeyAlgorithm: 'webcrypto.html#class-keyalgorithm',
KeyObject: 'crypto.html#class-keyobject',

MIMEParams: 'util.html#class-utilmimeparams',
Expand Down Expand Up @@ -214,6 +219,7 @@ export const DOC_TYPES_MAPPING_NODE_MODULES = {
RecordableHistogram:
'perf_hooks.html#class-recordablehistogram-extends-histogram',

RsaHashedKeyAlgorithm: 'webcrypto.html#class-rsahashedkeyalgorithm',
RsaHashedImportParams: 'webcrypto.html#class-rsahashedimportparams',
RsaHashedKeyGenParams: 'webcrypto.html#class-rsahashedkeygenparams',
RsaOaepParams: 'webcrypto.html#class-rsaoaepparams',
Expand Down
Loading