Fix TypeScript typecheck errors
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-30 15:56:06 +01:00
parent 916b204688
commit b1f9f7cee0
42 changed files with 324 additions and 72 deletions

View File

@@ -15,15 +15,85 @@ declare module '@tamagui/button' {
export { Button };
}
declare module '@tamagui/card' {
export const Card: any;
}
declare module '@tamagui/group' {
export const XGroup: any;
export const YGroup: any;
}
declare module '@tamagui/list-item' {
export const ListItem: any;
}
declare module '@tamagui/checkbox' {
export const Checkbox: any;
}
declare module '@tamagui/switch' {
export const Switch: any;
}
declare module '@tamagui/accordion' {
export const Accordion: any;
}
declare module '@tamagui/scroll-view' {
export const ScrollView: any;
}
declare module '@tamagui/toggle-group' {
export const ToggleGroup: any;
}
declare module '@tamagui/alert-dialog' {
export const AlertDialog: any;
}
declare module '@tamagui/select' {
export const Select: any;
}
declare module '@tamagui/sheet' {
export const Sheet: any;
}
declare module '@tamagui/avatar' {
export const Avatar: any;
}
declare module '@tamagui/radio-group' {
export const RadioGroup: any;
}
declare module '@tamagui/progress' {
export const Progress: any;
}
declare module '@tamagui/slider' {
export const Slider: any;
}
declare module '@tamagui/image' {
export const Image: any;
}
declare module '@tamagui/react-native-web-lite' {
export const Pressable: any;
export * from 'react-native';
}
declare module 'tamagui' {
export const Tabs: any;
export const Separator: any;
export const Slider: any;
export const Input: any;
export const TextArea: any;
export const Spinner: any;
}
declare module '@/actions/*' {
const mod: any;
export = mod;