Thibaud Auzou

Results 2 comments of Thibaud Auzou

Hello @mrashed-dev It may work for TypeScript but once compiled, this code won't work: ``` { "errorType": "TypeError", "errorMessage": "Nylas.default is not a constructor", "trace": [ "TypeError: Nylas.default is not...

My only working solution for now is to do this: ``` // @ts-expect-error Some comment so next dev can understand... const nylas = new Nylas({ apiKey: nylasApiKey, apiUri: nylasApiBaseUrl })...