# @types/ngbootbox

> TypeScript definitions for ngbootbox

Latest version **0.0.33** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/ngbootbox
pnpm add @types/ngbootbox
yarn add @types/ngbootbox
bun add @types/ngbootbox
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.0.33 |
| Published | 2023-11-07 |
| First published | 2016-05-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 4.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51440 |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/ngbootbox
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ngbootbox
- npm.io page: https://npm.io/package/@types/ngbootbox

## Dependencies (1)

- [@types/bootbox](https://npm.io/package/@types/bootbox.md) *

## Recent versions

- 0.0.33 (latest) — 2023-11-07
- 0.0.31 (ts3.6) — 2021-07-08
- 0.0.30 (ts3.0) — 2020-05-15
- 0.0.29 (ts2.3) — 2017-06-15
- 0.0.28 (ts2.0) — 2016-09-19
- 0.0.32 — 2023-10-18
- 0.0.27 — 2016-07-14
- 0.0.26-alpha — 2016-07-08
- 0.0.25-alpha — 2016-07-04
- 0.0.24-alpha — 2016-07-02
- 0.0.23-alpha — 2016-07-01
- 0.0.22-alpha — 2016-07-01
- 0.0.21-alpha — 2016-05-25
- 0.0.20-alpha — 2016-05-20
- 0.0.15-alpha — 2016-05-19
- … 1 more at https://npm.io/package/@types/ngbootbox/versions

## README

# Installation
> `npm install --save @types/ngbootbox`

# Summary
This package contains type definitions for ngbootbox (https://github.com/eriktufvesson/ngBootbox).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ngbootbox.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ngbootbox/index.d.ts)
````ts
/// <reference types="bootbox" />

interface NgBootboxDialog {
    title?: string | undefined;
    message?: string | undefined;
    templateUrl?: string | undefined;
    locale?: string | undefined;
    callback?: (() => any) | undefined;
    onEscape?: (() => any | boolean) | undefined;
    show?: boolean | undefined;
    backdrop?: boolean | undefined;
    closeButton?: boolean | undefined;
    animate?: boolean | undefined;
    className?: string | undefined;
    size?: string | undefined;
    buttons?: BootboxButtonMap | undefined;
}

interface BootboxService {
    alert(msg: string): Promise<any>;
    confirm(msg: string): Promise<any>;
    prompt(msg: string): Promise<any>;
    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;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: [@types/bootbox](https://npmjs.com/package/@types/bootbox)

# Credits
These definitions were written by [Sam Saint-Pettersen](https://github.com/stpettersens).

---
_Source: https://npm.io/package/@types/ngbootbox · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
