mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
fix email type import
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import {Plugin, Cordova} from './plugin';
|
import {Plugin, Cordova} from './plugin';
|
||||||
import {Email} from './types/email.type.ts';
|
import {Email} from './types/email.type';
|
||||||
declare var cordova;
|
declare var cordova;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -3,11 +3,11 @@
|
|||||||
*/
|
*/
|
||||||
export interface Email {
|
export interface Email {
|
||||||
app?: string;
|
app?: string;
|
||||||
to: string | Array<string>;
|
to?: string | Array<string>;
|
||||||
cc: string | Array<string>;
|
cc?: string | Array<string>;
|
||||||
bcc: string | Array<string>;
|
bcc?: string | Array<string>;
|
||||||
attachments: Array<any>;
|
attachments?: Array<any>;
|
||||||
subject: string;
|
subject?: string;
|
||||||
body: string;
|
body?: string;
|
||||||
isHtml: boolean;
|
isHtml?: boolean;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user