mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
14 lines
224 B
TypeScript
14 lines
224 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);
|