fix(core): update

This commit is contained in:
2019-03-25 15:57:38 +01:00
parent d4c3d23634
commit 9eb9f14a38
5 changed files with 1735 additions and 2 deletions

View File

@@ -1,3 +1,23 @@
import * as plugins from './websetup.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
import { setupGoogleAnalytics } from './tools/ganalytics';
export interface IWebSetupConstructorOptions {
googleAnalyticsCode?: string;
fsCode?: string;
}
/**
* the main WebSetup class
*/
export class WebSetup {
constructor(optionsArg: IWebSetupConstructorOptions) {
if (optionsArg.googleAnalyticsCode) {
setupGoogleAnalytics(optionsArg.googleAnalyticsCode);
}
if () {
}
}
}