fix(core): initial
This commit is contained in:
1
ts/index.ts
Normal file
1
ts/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export * from './smartmail.classes.smartmail';
|
11
ts/smartmail.classes.smartmail.ts
Normal file
11
ts/smartmail.classes.smartmail.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import * as plugins from './smartmail.plugins';
|
||||
|
||||
/**
|
||||
* a standard representation for mails
|
||||
*/
|
||||
export class Smartmail {
|
||||
from: string;
|
||||
to: string;
|
||||
body: string;
|
||||
attachments: any[];
|
||||
}
|
2
ts/smartmail.plugins.ts
Normal file
2
ts/smartmail.plugins.ts
Normal file
@ -0,0 +1,2 @@
|
||||
const removeme = {};
|
||||
export { removeme };
|
Reference in New Issue
Block a user