Skip to content

Commit 76b3e99

Browse files
committed
fix: allow for plugin options to be passed
1 parent 836ff3f commit 76b3e99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type SdObjType<T extends Record<string, any>> = {
99

1010
export type TailwindOptions = Pick<TailwindConfig, 'content' | 'darkMode'> & {
1111
plugins: Array<
12-
'typography' | 'forms' | 'aspect-ratio' | 'line-clamp' | 'container-queries'
12+
'typography' | ['typography', { className?: string, target?: 'modern' | 'legacy' }] | 'forms' | ['forms', { strategy?: 'base' | 'class' }] | 'aspect-ratio' | 'line-clamp' | 'container-queries'
1313
>
1414
}
1515
export type TailwindFormatType = 'js' | 'cjs'

0 commit comments

Comments
 (0)