2026-02-17 14:30:02 +07:00
|
|
|
// 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 {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-09 10:50:59 +07:00
|
|
|
declare module '*?raw' {
|
|
|
|
|
const content: string;
|
|
|
|
|
export default content;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-17 14:30:02 +07:00
|
|
|
export {};
|