weblogo/ts/index.ts
2018-12-28 00:19:37 +01:00

20 lines
386 B
TypeScript

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) {
}
}