add API comments

This commit is contained in:
Matthieu Jolimaitre 2024-02-02 13:52:05 +01:00
parent fe34c8a91c
commit d62bf01b4a
7 changed files with 85 additions and 0 deletions

View file

@ -7,6 +7,9 @@ export type EmailerConfig = {
password: string;
};
/**
* Wraps emailing process.
*/
export class Emailer {
private client;
private config;