mirror of
https://github.com/Blah-IM/Weblah.git
synced 2025-05-01 08:41:08 +00:00
26 lines
560 B
TypeScript
26 lines
560 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
// 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 ViewTransition {
|
|
updateCallbackDone: Promise<void>;
|
|
ready: Promise<void>;
|
|
finished: Promise<void>;
|
|
skipTransition: () => void;
|
|
}
|
|
|
|
interface Document {
|
|
startViewTransition(updateCallback: () => Promise<void>): ViewTransition;
|
|
}
|
|
}
|
|
|
|
export {};
|