mirror of
https://github.com/Xevion/smart-rgb.git
synced 2025-12-08 14:08:33 -06:00
18 lines
409 B
TypeScript
18 lines
409 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare const __DESKTOP__: boolean;
|
|
declare const __APP_VERSION__: string;
|
|
declare const __GIT_COMMIT__: string;
|
|
declare const __BUILD_TIME__: string;
|
|
|
|
declare module "@wasm/borders.js" {
|
|
export { default } from "../pkg/borders";
|
|
export * from "../pkg/borders";
|
|
}
|
|
|
|
// vite-imagetools support
|
|
declare module "*&imagetools" {
|
|
const out: any;
|
|
export default out;
|
|
}
|