DefinitelyTyped/types/ui-select/index.d.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

20 lines
517 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
// TypeScript Version: 2.3
/// <reference types="angular" />
import * as angular from 'angular';
declare module 'angular' {
export namespace ui.select {
interface ISelectConfig {
appendToBody: boolean;
resetSearchInput: boolean;
theme: string;
}
}
}