fix(core): update
This commit is contained in:
20
ts/index.ts
Normal file
20
ts/index.ts
Normal 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
4
ts/weblogo.plugins.ts
Normal file
@ -0,0 +1,4 @@
|
||||
const removeme = {};
|
||||
export {
|
||||
removeme
|
||||
}
|
Reference in New Issue
Block a user