mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-21 22:22:45 -05:00
22 lines
315 B
Markdown
22 lines
315 B
Markdown
|
# 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"],
|
||
|
```
|