0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-21 22:22:45 -05:00
penpot-plugins/libs/plugin-types/README.md

22 lines
315 B
Markdown
Raw Normal View History

2024-03-27 13:57:02 +01:00
# Penpot plugin-types
This repository contains the typings for the Penpot Plugin API.
### Getting started
Install the package:
```bash
npm install @penpot/plugin-types
```
Configure `tsconfig.json`
```json
"typeRoots": [
"./node_modules/@types",
"./node_modules/@penpot"
],
"types": ["plugin-types"],
```