mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* Clean up root license wording * Simplify SPDX header * simplify license and rename BSL to BUSL * fix merge issues * fix missing method --------- Co-authored-by: Justin Hernandez <transphorm@gmail.com>
20 lines
577 B
TypeScript
20 lines
577 B
TypeScript
// SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11
|
|
|
|
import { config } from '@tamagui/config/v3';
|
|
import { createTamagui } from 'tamagui';
|
|
|
|
// or '@tamagui/core'
|
|
|
|
const appConfig = createTamagui(config);
|
|
|
|
export type AppConfig = typeof appConfig;
|
|
|
|
declare module 'tamagui' {
|
|
// or '@tamagui/core'
|
|
// overrides TamaguiCustomConfig so your custom types
|
|
// work everywhere you import `tamagui`
|
|
interface TamaguiCustomConfig extends AppConfig {}
|
|
}
|
|
|
|
export default appConfig;
|