mirror of
https://github.com/revanced/revanced-website.git
synced 2025-05-03 08:04:25 +02:00
23 lines
694 B
TypeScript
23 lines
694 B
TypeScript
/// <reference types="@sveltejs/kit" />
|
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
// and what to do when importing types
|
|
declare namespace App {
|
|
// interface Locals {}
|
|
// interface Platform {}
|
|
// interface Session {}
|
|
// interface Stuff {}
|
|
}
|
|
|
|
declare module '*&as=picture' {
|
|
/**
|
|
* actual types
|
|
* taken from https://github.com/JonasKruckenberg/imagetools/issues/160#issuecomment-1009292026
|
|
* - code https://github.com/JonasKruckenberg/imagetools/blob/main/packages/core/src/output-formats.ts
|
|
* - docs https://github.com/JonasKruckenberg/imagetools/blob/main/docs/guide/getting-started.md#metadata
|
|
*/
|
|
const out;
|
|
export default out;
|
|
}
|