Skip to content

Commit d85bce3

Browse files
committed
fix: TailwindcssPatcher constructor param type
1 parent 0acb4c5 commit d85bce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tailwindcss-patch/src/class.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { getClassCacheSet, getContexts, getTailwindcssEntry } from './exposeContext'
2-
import type { InternalCacheOptions, PatchOptions } from './type'
2+
import type { CacheOptions, PatchOptions, InternalCacheOptions } from './type'
33
import { writeCache, readCache } from './cache'
44
import { createPatch } from './patcher'
55

66
export interface TailwindcssPatcherOptions {
7-
cache?: InternalCacheOptions
7+
cache?: CacheOptions
88
patch?: PatchOptions
99
}
1010

0 commit comments

Comments
 (0)