You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conversion of type '{ selfURL: string; darkMode?: DarkModeConfig; darkColor?: DarkColor<BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<...>; } & TailwindTheme> | undefined; ... 7 more ...; finalize: Finalize<...>[]; }' to type 'Options' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Types of property 'stringify' are incompatible.
Type 'StringifyDeclaration<BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<string, MaybeColorValue>; } & TailwindTheme>' is not comparable to type 'StringifyDeclaration<BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<string, MaybeColorValue>; }>'.
Types of parameters 'context' and 'context' are incompatible.
Type 'Context<BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<string, MaybeColorValue>; }>' is not comparable to type 'Context<BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<string, MaybeColorValue>; } & TailwindTheme>'.
The types returned by 'theme()' are incompatible between these types.
Type 'BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<string, MaybeColorValue>; }' is not comparable to type 'BaseTheme & { screens: Record<string, MaybeArray<ScreenValue>>; colors: Record<string, MaybeColorValue>; } & TailwindTheme'.deno-ts(2352)
Obvioulsy can just change it to as unknown as Options; but that seems more like just masking the problem.
If it makes a difference, I'm using "$fresh/": "https://deno.land/x/[email protected]/"
The text was updated successfully, but these errors were encountered:
After follwoing these instructions, https://github.com/y3km21/fresh-twindv1-plugin, the project works and runs, but the config
type errors with
Obvioulsy can just change it to
as unknown as Options;
but that seems more like just masking the problem.If it makes a difference, I'm using
"$fresh/": "https://deno.land/x/[email protected]/"
The text was updated successfully, but these errors were encountered: