Skip to content

Commit

Permalink
Improved MailerOptions interface
Browse files Browse the repository at this point in the history
  • Loading branch information
pawpartyka committed Mar 1, 2019
1 parent 38acfac commit a6bc6ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ declare interface MailerOptions {
template?: {
dir?: string;
adapter?: TemplateAdapter;
options?: { [name: string]: string; };
options?: { [name: string]: any; };
};
}

Expand Down
2 changes: 1 addition & 1 deletion lib/interfaces/mailer-options.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export interface MailerOptions {
template?: {
dir?: string;
adapter?: TemplateAdapter;
options?: { [name: string]: string; };
options?: { [name: string]: any; };
};
}

0 comments on commit a6bc6ea

Please sign in to comment.