From ba35d181c7c48d0658b333c2295cb8ad9082f371 Mon Sep 17 00:00:00 2001 From: Giacomo Ferretti Date: Mon, 21 Aug 2023 23:35:31 +0200 Subject: [PATCH] fix(types): make `tailwindFunctions` and `tailwindAttributes` optional --- src/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.d.ts b/src/index.d.ts index 2fedcc51..45957be4 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -9,12 +9,12 @@ export interface PluginOptions { /** * List of custom function and tag names that contain classes. */ - tailwindFunctions: string[] + tailwindFunctions?: string[] /** * List of custom attributes that contain classes. */ - tailwindAttributes: string[] + tailwindAttributes?: string[] } declare module 'prettier' {