UNPKG

431 BTypeScriptView Raw
1/**
2 * Base Component
3 *
4 * @link https://github.com/twbs/bootstrap/blob/main/js/src/base-component.js
5 */
6export default class BaseComponent {
7 constructor(element: string | Element);
8
9 /**
10 * Destroys an element's.
11 */
12 dispose(): void;
13
14 /**
15 * Version of this plugin
16 *
17 * @link https://getbootstrap.com/docs/5.0/getting-started/javascript/#version-numbers
18 */
19 static VERSION: string;
20}