🚀New lib version v0.4.0 [CI SKIP]
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-01-30 15:30:27 +00:00
parent fc01350288
commit 8000129da7
18 changed files with 61 additions and 12 deletions

10
dist/services/MailService.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
import type { ResponseEmpty } from '../models/ResponseEmpty';
export declare class MailService {
/**
* Get
* Sends a test email to the configured from-address.
* @returns ResponseEmpty
* @throws ApiError
*/
static mailControllerGet(): Promise<ResponseEmpty>;
}