0.3.3 • Published 7 months ago

@types/sns-validator v0.3.3

Weekly downloads
2,584
License
MIT
Repository
github
Last release
7 months ago

Installation

npm install --save @types/sns-validator

Summary

This package contains type definitions for sns-validator (https://github.com/aws/aws-js-sns-message-validator#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sns-validator.

index.d.ts

// Type definitions for sns-validator 0.3
// Project: https://github.com/aws/aws-js-sns-message-validator#readme
// Definitions by: Kévin Baumeyer <https://github.com/kevin68>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

declare class MessageValidator {
    /**
     * Create a new MessageValidator
     * @param hostPattern - A pattern used to validate that a message's certificate originates from a trusted domain. Default: `/^sns\.[a-zA-Z0-9\-]{3,}\.amazonaws\.com(\.cn)?$/`
     * @param encoding - The encoding of the messages being signed. Default is `utf8`
     */
    constructor(hostPattern?: RegExp, encoding?: string);

    /**
     * Validates a message's signature and passes it to the provided callback.
     * @param hash Can be the raw or parsed message.
     * @param cb The callback which is called with the message when it is valid or with an Error when it isn't.
     */
    validate(
        hash: string | Record<string, unknown>,
        cb: (err: Error | null, message?: Record<string, unknown>) => void,
    ): void;
}
export = MessageValidator;

Additional Details

  • Last updated: Tue, 21 Sep 2021 18:01:35 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Kévin Baumeyer.

0.3.2

7 months ago

0.3.3

7 months ago

0.3.1

3 years ago

0.3.0

5 years ago