var Bootstrap = Namespace.declare("com.twitter",
    class Bootstrap {
        static get implements() { return []; };
        static start() {
            UcpComponentSupport.importLink(this.IOR.loader.basePath + "/dist/css/bootstrap.min.css", "stylesheet", "text/css");
            UcpComponentSupport.importLink(this.IOR.loader.basePath + "/dist/css/bootstrap-theme.min.css", "stylesheet", "text/css");
            console.log(this.name + " is ready");
            new this().init();
        }

        static get dependencies() {
            return [
                "/EAMD.ucp/Components/org/JQuery/3.2.1-Once/JQuery.component.xml",
                this.IOR.loader.basePath + "/dist/js/bootstrap.min.js"
            ];
        }

        constructor() {}

        init(controller) {
            return this;
        }
    }
);