Skip to content

Commit c6d2ec8

Browse files
committed
export EmailJSResponseStatus as model
1 parent 19b8a4e commit c6d2ec8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
import type { EmailJSResponseStatus } from './models/EmailJSResponseStatus';
21
import type { StorageProvider } from './types/StorageProvider';
2+
import { EmailJSResponseStatus } from './models/EmailJSResponseStatus';
33
import { init } from './methods/init/init';
44
import { send } from './methods/send/send';
55
import { sendForm } from './methods/sendForm/sendForm';
66

7-
export type { EmailJSResponseStatus, StorageProvider };
7+
export type { StorageProvider };
88

99
export { init, send, sendForm };
1010

1111
export default {
1212
init,
1313
send,
1414
sendForm,
15+
EmailJSResponseStatus,
1516
};

0 commit comments

Comments
 (0)