2018-12-27 22:52:56 +00:00
|
|
|
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) {
|
2018-12-27 23:19:37 +00:00
|
|
|
|
2018-12-27 22:52:56 +00:00
|
|
|
}
|
|
|
|
}
|