weiterer fortschritt mit tamagui und dem neuen mobile event admin

This commit is contained in:
Codex Agent
2025-12-10 20:01:47 +01:00
parent 73e550ee87
commit 7b01a77083
26 changed files with 761 additions and 139 deletions

30
resources/js/types/shims.d.ts vendored Normal file
View File

@@ -0,0 +1,30 @@
declare module '@tamagui/stacks' {
export const YStack: any;
export const XStack: any;
export const Stack: any;
}
declare module '@tamagui/text' {
export const SizableText: any;
}
declare module '@tamagui/button' {
const Button: any;
export default Button;
export const ButtonText: any;
export { Button };
}
declare module '@tamagui/list-item' {
export const ListItem: any;
}
declare module '@tamagui/react-native-web-lite' {
export const Pressable: any;
export * from 'react-native';
}
declare module '@/actions/*' {
const mod: any;
export = mod;
}