/** * Any other emails. * * @link ecomm.gitngin.com/wiki/models/contactEmail * @file Extends Email class with IContactEmail interface * @author Titane Studio . * @since 01-01-2020 */ import Email from '.'; import Space from '../Space'; export default class OtherTypeEmails extends Email { data: any; from?: string | undefined; constructor(_data: any, _space: Space, _to: string, _type: string, _from?: string); sendEmail: (locale?: string, cc?: string, replyTo?: string) => Promise; }