fix(readme): add links to documentation

This commit is contained in:
Philipp Kunz
2019-11-18 16:18:58 +00:00
parent a602155d0b
commit 340287ea55
7 changed files with 1947 additions and 120 deletions

View File

@@ -1,5 +1,16 @@
import * as plugins from './letterxpress.plugins';
export interface ILetterXpressConstructorOptions {
email: string;
apiKey: string;
}
export class LetterXpressAccount {
}
public options: ILetterXpressConstructorOptions;
constructor(optionsArg: ILetterXpressConstructorOptions) {
this.options = optionsArg;
}
public request() {}
}

View File

@@ -1,5 +1,3 @@
import * as smartrequest from '@pushrocks/smartrequest';
export {
smartrequest
};
export { smartrequest };