UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

15 lines (12 loc) 547 B
import type { LobeCustomStylish, LobeCustomToken } from '@lobehub/ui'; import 'antd-style'; import { AntdToken } from 'antd-style/lib/types/theme'; declare module 'antd-style' { // eslint-disable-next-line @typescript-eslint/no-empty-interface export interface CustomToken extends LobeCustomToken {} // eslint-disable-next-line @typescript-eslint/no-empty-interface export interface CustomStylish extends LobeCustomStylish {} } declare module 'styled-components' { export interface DefaultTheme extends AntdToken, LobeCustomToken {} }