mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +07:00
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { createTamagui } from "@tamagui/core";
|
|
import { config } from "@tamagui/config/v3";
|
|
|
|
// you usually export this from a tamagui.config.ts file
|
|
const tamaguiConfig = createTamagui(config);
|
|
|
|
// TypeScript types across all Tamagui APIs
|
|
type Conf = typeof tamaguiConfig;
|
|
declare module "@tamagui/core" {
|
|
interface TamaguiCustomConfig extends Conf {}
|
|
}
|
|
|
|
export default tamaguiConfig;
|