mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2025-01-08 05:52:10 +07:00
17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
|
// See https://kit.svelte.dev/docs/types#app
|
||
|
// for information about these interfaces
|
||
|
declare global {
|
||
|
namespace App {
|
||
|
// interface Error {}
|
||
|
// interface Locals {}
|
||
|
// interface PageData {}
|
||
|
// interface PageState {}
|
||
|
// interface Platform {}
|
||
|
}
|
||
|
interface ImportMetaEnv {
|
||
|
VITE_API_URL: string;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|