// Type definitions for ngbootbox // Project: https://github.com/eriktufvesson/ngBootbox // Definitions by: Sam Saint-Pettersen // Definitions: https://github.com/borisyankov/DefinitelyTyped /// /// interface NgBootboxDialog { title?: string; message?: string; templateUrl?: string; locale?: string; callback?: () => any; onEscape?: () => any | boolean; show?: boolean; backdrop?: boolean; closeButton?: boolean; animate?: boolean; className?: string; size?: string; buttons?: BootboxButtonMap; } interface BootboxService { alert(msg: string): Promise; confirm(msg: string): Promise; prompt(msg: string): Promise; customDialog(options: NgBootboxDialog): void; setDefaults(options: BootboxDefaultOptions): void; hideAll(): void; addLocale(name: string, values: BootboxLocaleValues): void; removeLocale(name: string): void; setLocale(name: string): void; } declare var $ngBootbox: BootboxService;