12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
|
import HttpMethods from './request/HttpMethods';
|
||
|
import Request from './request/index';
|
||
|
import Client from './client/index';
|
||
|
declare class Mailjet extends Client {
|
||
|
static Request: typeof Request;
|
||
|
static HttpMethods: typeof HttpMethods;
|
||
|
static Client: typeof Client;
|
||
|
}
|
||
|
export * from './types/api';
|
||
|
export { Client, Request, HttpMethods };
|
||
|
export default Mailjet;
|