UNPKG

gd-bs

Version:

Bootstrap JavaScript, TypeScript and Web Components library.

11 lines (10 loc) 305 B
/** * Custom Controls */ export class CustomControls { // Gets the event by type static getByType(key) { return this._customTypes[key]; } // Registers a custom control type static registerType(key, event) { this._customTypes[key] = event; } } CustomControls._customTypes = {};