mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
331 B
TypeScript
16 lines
331 B
TypeScript
import NeverBounce = require('neverbounce');
|
|
|
|
const Client = new NeverBounce({});
|
|
|
|
Client.account.info().then(() => {});
|
|
|
|
Client.jobs.create([
|
|
{
|
|
id: '12345',
|
|
email: 'email',
|
|
name: 'name'
|
|
}
|
|
], NeverBounce.job.inputType.supplied,
|
|
'Created from Array.csv'
|
|
).then(() => {});
|