Skip to content

managed-components/types

Repository files navigation

Typescript Definitions for Managed Components

Find out more about Managed Components here.

Install

npm install -D @managed-components/types
-- Or
yarn add -D @managed-components/types

Usage

The following is a minimal tsconfig.json for use alongside this package:

tsconfig.json

{
  "compilerOptions": {
    "target": "es2022",
    "module": "commonjs",
    "lib": ["es2022"],
    "types": ["@managed-components/types"]
  }
}