19 lines
556 B
TypeScript
19 lines
556 B
TypeScript
|
// See https://kit.svelte.dev/docs/types#app
|
||
|
// for information about these interfaces
|
||
|
// and what to do when importing types
|
||
|
declare namespace App {
|
||
|
// interface Error {}
|
||
|
// interface Locals {}
|
||
|
// interface PageData {}
|
||
|
// interface Platform {}
|
||
|
}
|
||
|
|
||
|
declare module "*&imagetools" {
|
||
|
/**
|
||
|
* actual types
|
||
|
* - 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;
|
||
|
}
|