fix(core): update

This commit is contained in:
2020-10-15 10:33:47 +00:00
parent 8964f0d228
commit eba9086c8b
6 changed files with 85 additions and 5 deletions

View File

@@ -1,3 +1 @@
import * as plugins from './paddle.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export * from './paddle.classes.accounts';

View File

@@ -0,0 +1,9 @@
import * as plugins from './paddle.plugins';
export class PaddleAccount {
private apiKey: string
constructor(apiKeyArg: string) {
this.apiKey = apiKeyArg;
}
}