DefinitelyTyped/ui-select/index.d.ts

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