2019-11-16 16:54:45 +00:00
|
|
|
import * as plugins from './letterxpress.plugins';
|
|
|
|
|
2019-11-18 16:18:58 +00:00
|
|
|
export interface ILetterXpressConstructorOptions {
|
|
|
|
email: string;
|
|
|
|
apiKey: string;
|
|
|
|
}
|
|
|
|
|
2019-11-16 16:54:45 +00:00
|
|
|
export class LetterXpressAccount {
|
2019-11-18 16:18:58 +00:00
|
|
|
public options: ILetterXpressConstructorOptions;
|
|
|
|
|
|
|
|
constructor(optionsArg: ILetterXpressConstructorOptions) {
|
|
|
|
this.options = optionsArg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public request() {}
|
|
|
|
}
|