All checks were successful
Deploy to SFTP Server / build (push) Successful in 41m27s
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
/// <reference path="../.astro/types.d.ts" />
|
|
/// <reference types="astro/client" />
|
|
/// <reference types="unplugin-icons/types" />
|
|
|
|
declare global {
|
|
interface Window {
|
|
colors: import("svelte/store").Writable<{
|
|
background: string;
|
|
}>
|
|
}
|
|
}
|
|
|