JSPM

@hcaptcha/types

1.0.4
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 29288
    • Score
      100M100P100Q140264F
    • License MIT

    hCaptcha Type Definitions

    Package Exports

      This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@hcaptcha/types) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

      Readme

      hCaptcha TypeScript Definitions

      TypeScript module for hcaptcha global variable.

      Installation

      yarn add -D @hcaptcha/types

      or via npm

      npm install -D @hcaptcha/types

      How to use

      Locally in file

      import '@hcaptcha/types';
      
      // `hcaptcha` now is defined on the global object
      hcaptcha.execute();

      or

      ///<reference types="@hcaptcha/types"/>
      
      // `hcaptcha` now is defined on the global object
      hcaptcha.execute();

      Globally

      Add import or reference to your .d.ts:

      import "@hcaptcha/types";
      
      // or
      
      /// <reference types="@hcaptcha/types"/>

      Or add "node_modules/@hcaptcha" to the typeRoots in tsconfig.json

      {
        "compilerOptions": {
          // ...
          "typeRoots": [
            "node_modules/@hcaptcha"
          ]
          // ...
        },
        // ...
      }

      Bug Report

      If you encounter an issue and would like to report it, please email us at support@hcaptcha.com.