This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
lfk-client-node/dist/services/MailService.d.ts
Nicolai Ort 8000129da7
All checks were successful
continuous-integration/drone Build is passing
🚀New lib version v0.4.0 [CI SKIP]
2021-01-30 15:30:27 +00:00

11 lines
294 B
TypeScript

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>;
}