Skip to content
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

Make it usable from typescript #6

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

malt03
Copy link

@malt03 malt03 commented Aug 20, 2021

In TypeScript, it is not possible to import a module that exports a class by itself.
In other words, we are forced to use require, which does not allow us to define types.
Therefore, I changed the export method as follows, although it is a destructive change.

// before
module.exports = EdgeAuth;

// after
module.exports = { EdgeAuth };

Then, I created a type definition file.

Now we can use from TypeScript as follows.

import { EdgeAuth } from "akamai-edgeauth";

@knotmine
Copy link

Oh damn. this is 3 years old. Any alternatives around?

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

Successfully merging this pull request may close these issues.

2 participants