piclets / src /vite-env.d.ts
Fraser's picture
add UI options
62fead0
raw
history blame contribute delete
240 Bytes
/// <reference types="svelte" />
/// <reference types="vite/client" />
import type { HuggingFaceLibs, GradioLibs } from './lib/types';
declare global {
interface Window {
hfAuth: HuggingFaceLibs;
gradioClient: GradioLibs;
}
}