gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
20 lines (15 loc) • 422 B
text/typescript
// Bootstrap styles
import "./bs";
// Import the IE fix
import "./ie";
// Bootstrap Components
import * as Components from "./components";
export { Components }
// Icons
import { Icons, IconTypes } from "./icons";
export { Icons, IconTypes }
// Bootstrap Global library
const BS = { Components, Icons, IconTypes }
window["GD"] = window["GD"] || BS;
// Custom Elements
import "./custom-elements.js";