@chelseaapps/notification documentation

File

src/interfaces/notification-options.interface.ts

Index

Properties

isGlobal

Optional

Register the module globally? Default true

import { IEmailOptions } from './email-options.interface';
import { ISMSOptions } from './sms-options.interface';

// tslint:disable: no-empty-interface
export interface NotificationOptions {
    /**
     * Register the module globally? Default `true`
     */
    isGlobal?: boolean;
    /**
     * SMTP settings
     */
    email: IEmailOptions;
    /**
     * SMS configuration
     */
    sms: ISMSOptions;
}

Was this helpful?