mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-25 04:12:26 +01:00
- database module + migrations handler - http client class + arr client child (with connection pooling, retries, backoff) - toast alerts - add new arr configs
19 lines
381 B
TypeScript
19 lines
381 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
// interface Locals {}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
|
|
// Extend RequestInit to support Deno HttpClient
|
|
interface RequestInit {
|
|
client?: Deno.HttpClient;
|
|
}
|
|
}
|
|
|
|
export {};
|