mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
16 lines
439 B
TypeScript
16 lines
439 B
TypeScript
// Type definitions for angular-ui-uib-modal (ui.router module) 0.11
|
|
// Project: https://github.com/nonplus/angular-ui-router-uib-modal
|
|
// Definitions by: Stepan Riha <https://github.com/nonplus>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
import * as auir from "angular-ui-router";
|
|
|
|
declare module "angular" {
|
|
namespace ui {
|
|
interface IState {
|
|
modal?: boolean | string[];
|
|
}
|
|
}
|
|
}
|