mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
|
|
import mandrill = require('mandrill-api');
|
|
|
|
var
|
|
M = new mandrill.Mandrill('key', false),
|
|
cb: mandrill.ICallback = function(asd){
|
|
|
|
};
|
|
|
|
|
|
M.templates.add({});
|
|
M.webhooks.delete({id: 1});
|
|
M.call('url', {}, cb, cb); |