Big replacement: bool with boolean

This commit is contained in:
Boris Yankov
2013-08-07 16:59:39 +03:00
parent bded8a8af5
commit dd35f69637
128 changed files with 4254 additions and 4240 deletions
+5 -5
View File
@@ -38,7 +38,7 @@ interface MailComposer {
text?: string; // plaintext body
html?: string; // HTML body
attachments?: NodeMailerAttachment[]; // An array of attachments
forceEmbeddedImages?: bool;
forceEmbeddedImages?: boolean;
}
interface DKIMOptions{
@@ -70,7 +70,7 @@ interface XOAuth2Options {
interface NodemailerTransportOptions {
service?: string;
auth?: NodemailerAuthInterface;
debug?: bool;
debug?: boolean;
AWSAccessKeyID?: string;
AWSSecretKey: string;
ServiceUrl: string;
@@ -87,11 +87,11 @@ interface NodemailerSMTPTransportOptions {
service?: string;
host?: string;
port?: number;
secureConnection?: bool;
secureConnection?: boolean;
name?: string;
auth: NodemailerAuthInterface;
ignoreTLS?: bool;
debug?: bool;
ignoreTLS?: boolean;
debug?: boolean;
maxConnections?: number;
}