mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
13 lines
252 B
TypeScript
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
|
|
}
|