0.6.3 removed the export for the PluginOptions type. This wasn't really intentional so we're adding it back as some projects were importing it.
However, no project ever needs to use this type directly.
We extend the appropriate interfaces in Prettier so you only ever have to type your config file export as import("prettier").Config or your options object as import("prettier").Options if you're using the programmatic API.
0.6.3 removed the export for the PluginOptions type. This wasn't really intentional so we're adding it back as some projects were importing it.
However, no project ever needs to use this type directly.
We extend the appropriate interfaces in Prettier so you only ever have to type your config file export as
import("prettier").Config
or your options object asimport("prettier").Options
if you're using the programmatic API.Fixes #291