Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUltDev committed May 10, 2024
1 parent acbb846 commit 3b76d6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion design/env.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import type {AppThemes, AppBreakpoints} from './styles';
import type {SvgProps} from 'react-native-svg';

declare module 'design/styles' {
declare module 'styles' {
export interface UnistylesThemes extends AppThemes {}
export interface UnistylesBreakpoints extends AppBreakpoints {}
}

declare module 'design/styles' {
export * from 'styles';
}

declare module '*.svg' {
const content: React.FC<SvgProps>;
export default content;
Expand Down
1 change: 1 addition & 0 deletions toolkit/bundler/src/lib/exo.web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export default defineConfig(env => mergeConfig(
},
optimizeDeps: {
exclude: [
'@vidstack/react',
'@dotlottie/common',
'@dotlottie/react-player',
],
Expand Down

0 comments on commit 3b76d6d

Please sign in to comment.