Skip to content

Commit

Permalink
fix(types): options is actually optional (#311)
Browse files Browse the repository at this point in the history
Co-authored-by: Ward Peeters <ward@coding-tech.com>
  • Loading branch information
JounQin and wardpeet committed Aug 30, 2020
1 parent 2946eae commit a7299a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Expand Up @@ -46,4 +46,4 @@ export type PostCSSPluginConf = {
exclude?: Parameters<CreateFilter>[1];
};

export default function (options: Readonly<PostCSSPluginConf>): Plugin
export default function (options?: Readonly<PostCSSPluginConf>): Plugin

0 comments on commit a7299a4

Please sign in to comment.