├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── index.d.ts ├── package.json ├── plugin-api-standalone.d.ts ├── plugin-api.d.ts ├── test-usage.sh └── tsconfig.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | test-artifacts 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/package.json -------------------------------------------------------------------------------- /plugin-api-standalone.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/plugin-api-standalone.d.ts -------------------------------------------------------------------------------- /plugin-api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/plugin-api.d.ts -------------------------------------------------------------------------------- /test-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/test-usage.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figma/plugin-typings/HEAD/tsconfig.json --------------------------------------------------------------------------------