We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d626fb commit 5bdbda3Copy full SHA for 5bdbda3
1 file changed
adminforth/types/Adapters.ts
@@ -7,7 +7,10 @@ export interface EmailAdapter {
7
text: string,
8
html: string,
9
subject: string
10
- ): Promise<void>;
+ ): Promise<{
11
+ error?: string;
12
+ ok?: boolean;
13
+ }>;
14
}
15
16
export interface CompletionAdapter {
0 commit comments