mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
15 lines
244 B
TypeScript
15 lines
244 B
TypeScript
/// <reference types="@sveltejs/kit" />
|
|
interface Window {}
|
|
|
|
namespace App {
|
|
interface Error {
|
|
type?: string;
|
|
}
|
|
|
|
interface HandleClientError {
|
|
message: string;
|
|
status?: number;
|
|
type?: string;
|
|
}
|
|
}
|