diff --git a/index.ts b/index.ts index 95dfc1c4..873698b6 100644 --- a/index.ts +++ b/index.ts @@ -1,6 +1,9 @@ import Client from './lib/client' import Options from './lib/interfaces/Options'; +export type { Options }; +export type { Client }; + export default class Mailgun { private formData: new () => FormData @@ -11,4 +14,4 @@ export default class Mailgun { client(options: Options) { return new Client(options, this.formData) } -}; \ No newline at end of file +};