mirror of
https://github.com/D4M13N-D3V/neroshitron.git
synced 2025-03-14 10:05:04 +00:00
14 lines
341 B
TypeScript
14 lines
341 B
TypeScript
|
import { config } from '@tamagui/config/v3'
|
||
|
|
||
|
import { createTamagui } from 'tamagui'
|
||
|
const tamaguiConfig = createTamagui(config)
|
||
|
// this makes typescript properly type everything based on the config
|
||
|
|
||
|
type Conf = typeof tamaguiConfig
|
||
|
|
||
|
declare module 'tamagui' {
|
||
|
|
||
|
interface TamaguiCustomConfig extends Conf {}
|
||
|
|
||
|
}
|
||
|
export default tamaguiConfig
|