# @types/root__asn1

> TypeScript definitions for @root/asn1

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

## Install

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

## 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.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.5 |
| Published | 2023-11-07 |
| First published | 2020-06-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51441 |
| Maintainers | types |

## Links

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

## Recent versions

- 1.0.5 (latest) — 2023-11-07
- 1.0.2 (ts3.7) — 2021-07-08
- 1.0.4 — 2023-10-18
- 1.0.3 — 2023-09-27
- 1.0.1 — 2020-09-26
- 1.0.0 — 2020-06-12

## README

# Installation
> `npm install --save @types/root__asn1`

# Summary
This package contains type definitions for @root/asn1 (https://git.coolaj86.com/coolaj86/asn1.js).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/root__asn1.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/root__asn1/index.d.ts)
````ts
export {};

interface Element<V extends string | Uint8Array> {
    type: number;
    lengthSize: number;
    length: number;
    value?: V | undefined;
    children?: Array<Element<V>> | undefined;
}

export type ElementHex = Element<string>;

export type ElementBuffer = Element<Uint8Array>;

export interface ElementInput {
    type: number;
    value?: string | Uint8Array | undefined;
    children?: ElementInput[] | undefined;
}

export type ArrJson = [string, string | ArrJson[]];

export type ArrBuffer = [number, Uint8Array | ArrBuffer[]];

export type ArrInput = [string | number, string | Uint8Array | ArrInput[]];

export function parseVerbose(buf: Uint8Array, opts?: { json?: false | undefined }): ElementBuffer;

export function parseVerbose(buf: Uint8Array, opts: { json: true }): ElementHex;

export function parse(opts: { der: Uint8Array; verbose?: false | undefined; json?: true | undefined }): ArrJson;

export function parse(opts: { der: Uint8Array; verbose?: false | undefined; json: false }): ArrBuffer;

export function parse(opts: { der: Uint8Array; verbose: true; json?: true | undefined }): ElementHex;

export function parse(opts: { der: Uint8Array; verbose: true; json: false }): ElementBuffer;

export function pack(asn1: ElementInput | ArrInput, opts?: { json?: false | undefined }): Uint8Array;

export function pack(asn1: ElementInput | ArrInput, opts: { json: true }): string;

export function Any(hexType: string | number, ...hexBytes: string[]): string;

export function UInt(hexBigInt: string): string;

export function BitStr(hexBitStream: string): string;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 15:11:36 GMT
 * Dependencies: none

# Credits
These definitions were written by [Junxiao Shi](https://github.com/yoursunny).

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