# Webflow Designer Extension API typings

This project contains TypeScript type declarations for the Webflow Designer Extension API.

## Usage

1. Installation
   ```sh
   npm i --save-dev @webflow/designer-extension-typings
   ```
2. Configure `tsconfig.json`
   ```js
   {
     "compilerOptions": {
       "typeRoots": [
         "./node_modules/@types",
         "./node_modules/@webflow"
       ]
     }
   }
   ```
