You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello 👋 When using this module as per the readme instructions, we don't get type definitions for the core client object. It comes back as any type. This then has repercussions for the rest of its usage throughout an app. For example:
const gocardless = require('gocardless-nodejs');
const client = gocardless(...); // ==> client is of type 'any'
const mandate = await client.mandates.find(mandateId); // ==> mandate is of type 'any'
etc etc
Hello 👋 When using this module as per the readme instructions, we don't get type definitions for the core client object. It comes back as
any
type. This then has repercussions for the rest of its usage throughout an app. For example:Perhaps I've missed something blatantly obvious...?
The text was updated successfully, but these errors were encountered: