mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-08 17:19:27 +08:00
9 lines
268 B
TypeScript
9 lines
268 B
TypeScript
import * as angular from 'angular';
|
|
|
|
angular
|
|
.module('main', ['ui-select'])
|
|
.config(function(uiSelectConfig: angular.ui.select.ISelectConfig) {
|
|
uiSelectConfig.appendToBody = true;
|
|
uiSelectConfig.resetSearchInput = true;
|
|
uiSelectConfig.theme = "bootstrap";
|
|
}); |