This commit is contained in:
Benjamin Toby
2024-12-10 15:10:32 +01:00
parent a1d2325156
commit 04a4452821
19 changed files with 161 additions and 340 deletions
+7
View File
@@ -1195,4 +1195,11 @@ export interface AceEditorOptions {
wrapBehavioursEnabled?: boolean;
wrapMethod?: "code" | "text" | "auto";
}
export type SendOneTimeCodeEmailResponse = {
success: boolean;
code?: string;
createdAt?: number;
email?: string;
msg?: string;
};
export {};
+8
View File
@@ -1417,3 +1417,11 @@ export interface AceEditorOptions {
wrapBehavioursEnabled?: boolean;
wrapMethod?: "code" | "text" | "auto";
}
export type SendOneTimeCodeEmailResponse = {
success: boolean;
code?: string;
createdAt?: number;
email?: string;
msg?: string;
};