xmr-remote-nodes/frontend/src/app.d.ts

28 lines
532 B
TypeScript
Raw Normal View History

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
2024-05-07 20:55:57 +07:00
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
interface ImportMetaEnv {
VITE_API_URL: string;
}
interface MoneroNode {
id: number;
hostname: string;
ip: string;
port: number;
protocol: string;
is_tor: boolean;
is_available: boolean;
nettype: string;
}
}
export {};