Skip to content
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: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,19 +250,19 @@ When using a build tool like WebPack, Babel, Rollup or the TypeScript compiler:

```javascript
// Import the Web-eID library
import * as webeid from 'web-eid';
import * as webeid from '@web-eid/web-eid-library/web-eid';

// ...or only what you need
import {
status,
authenticate,
Action,
ErrorCode
} from 'web-eid';
} from '@web-eid/web-eid-library/web-eid';


// If you need TypeScript interfaces, they are also available!
import AuthenticateOptions from 'web-eid/models/AuthenticateOptions';
import ActionOptions from '@web-eid/web-eid-library/models/ActionOptions';
```

### ES module for browsers
Expand Down