mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
/// <reference types="vite/client" />
|
|
/// <reference types="vue/ref-macros" />
|
|
/// <reference types="naive-ui/volar" />
|
|
/// <reference types="@types/qrcode" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_HOST: string
|
|
readonly VITE_ENABLE_ANOUNCEMENT: string
|
|
readonly VITE_ENABLE_WALLET: string
|
|
readonly VITE_ALLOW_PHONE_BIND: string
|
|
readonly VITE_ALLOW_ACTIVATION: string
|
|
readonly VITE_ALLOW_TWEET_ATTACHMENT: string
|
|
readonly VITE_ALLOW_TWEET_ATTACHMENT_PRICE: string
|
|
readonly VITE_ALLOW_TWEET_VIDEO: string
|
|
readonly VITE_ALLOW_TWEET_LABEL: string
|
|
readonly VITE_ALLOW_TWEET_VISIBILITY: string
|
|
readonly VITE_DEFAULT_TWEET_VISIBILITY: string
|
|
readonly VITE_DEFAULT_TWEET_IMAGE_404: string
|
|
readonly VITE_TWEET_IMAGE_THUMBNAIL: string
|
|
readonly VITE_COPYRIGHT_TOP: string
|
|
readonly VITE_COPYRIGHT_LEFT: string
|
|
readonly VITE_COPYRIGHT_LEFT_LINK: string
|
|
readonly VITE_COPYRIGHT_RIGHT: string
|
|
readonly VITE_COPYRIGHT_RIGHT_LINK: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
} |