| 1234567891011121314151617181920212223242526272829303132333435 |
- /// <reference types="vite/client" />
- declare module '*.vue' {
- import type { DefineComponent } from 'vue'
- const component: DefineComponent<{}, {}, unknown>
- export default component
- }
- interface ComponentConstructor<P = any> {
- new (...args: any[]): {
- $props: P
- }
- }
- interface ImportMetaEnv {
- readonly VITE_SERVER: string
- }
- interface ImportMeta {
- readonly env: ImportMetaEnv
- }
- type PartialPart<T extends {}, K extends keyof T> = Omit<T, K> &
- Partial<Pick<T, K>>
- declare type I18nGlobalTranslation = {
- (key: string): string
- (key: string, locale: string): string
- (key: string, locale: string, list: unknown[]): string
- (key: string, locale: string, named: Record<string, unknown>): string
- (key: string, list: unknown[]): string
- (key: string, named: Record<string, unknown>): string
- }
- declare const $t: I18nGlobalTranslation
|