An open API service indexing awesome lists of open source software.

https://github.com/whisklabs/deep-readonly

Typescript deep-readonly interface
https://github.com/whisklabs/deep-readonly

Last synced: about 1 month ago
JSON representation

Typescript deep-readonly interface

Awesome Lists containing this project

README

          

# Deep-readonly

Recursive readonly generic

## Install

```bash
npm i @whisklabs/deep-readonly
```

## Usage

```ts
import { DeepReadonly, DeepReadonlyObject, DeepReadonlyArray } from '@whisklabs/deep-readonly';

type readOnlyObj = DeepReadonly<{ ... }>;
```