mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
20 lines
510 B
TypeScript
20 lines
510 B
TypeScript
// Type definitions for ui-select 0.13.2
|
|
// Project: https://github.com/angular-ui/ui-select
|
|
// Definitions by: Niko Kovačič <https://github.com/nkovacic>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../angularjs/angular.d.ts" />
|
|
|
|
declare module "ui-select" {
|
|
var _: string;
|
|
export = _;
|
|
}
|
|
|
|
declare namespace angular.ui.select {
|
|
interface ISelectConfig {
|
|
appendToBody: boolean;
|
|
resetSearchInput: boolean;
|
|
theme: string;
|
|
}
|
|
}
|