nginx-ui/app/env.d.ts
2025-04-18 14:04:11 +08:00

13 lines
252 B
TypeScript

/// <reference types="vite/client" />
// Extend Window interface
interface Window {
inWorkspace?: boolean
}
declare module '*.svg' {
import type React from 'react'
const content: React.FC<React.SVGProps<SVGElement>>
export default content
}