fix(core): update

This commit is contained in:
2018-12-27 23:52:56 +01:00
commit 8f704c43d0
10 changed files with 1844 additions and 0 deletions

20
ts/index.ts Normal file
View File

@ -0,0 +1,20 @@
import * as plugins from './weblogo.plugins';
export interface IWebLogo {
svgBanner: string;
svgSquared: string;
favIcon: string;
}
/**
* this class will expose the right urls for any needed logo variant within web projects
*/
export class WebLogo implements IWebLogo {
svgBanner: string;
svgSquared: string;
favIcon: string;
constructor(baseUrl: string) {
}
}

4
ts/weblogo.plugins.ts Normal file
View File

@ -0,0 +1,4 @@
const removeme = {};
export {
removeme
}