nuxeo / nuxeo-js-client

JavaScript client library for Nuxeo API
Other
18 stars 20 forks source link

Import a single export from a module #52

Closed kodermax closed 6 years ago

kodermax commented 6 years ago

Could you please make export module for import like this.

import { Nuxeo } from 'nuxeo';
troger commented 6 years ago

Why?

kodermax commented 6 years ago

Follow the standard ES6 Imports.

troger commented 6 years ago

You can already do the following:

import Nuxeo from 'nuxeo';
kodermax commented 6 years ago

I get error image

troger commented 6 years ago

Which version of the client do you use? Which version of Angular? Do you have a sample project reproducing the error? Or could it be reproduced with a bootstrap project or something?

troger commented 6 years ago

As Nuxeo is not a TypeScript module, you can do the following (tested on latest Angular version):

import * as Nuxeo from 'nuxeo';
kodermax commented 6 years ago

Thanks.