UNPKG

willcore.uicore

Version:
11 lines (9 loc) 210 B
class styleRegistry { constructor() { this.modules = []; } registerStyle(type, url) { this.modules.push({ type: type, url: url }); } } module.exports = styleRegistry;