-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathambient.d.ts
More file actions
56 lines (45 loc) · 1.05 KB
/
Copy pathambient.d.ts
File metadata and controls
56 lines (45 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/// <reference types="@sveltejs/enhanced-img/types" />
declare module '*.jpg?enhanced' {
const value: string;
export default value;
}
declare module '*.jpg?enhanced&w=220;352;704' {
const value: string;
export default value;
}
declare module '*.jpg?enhanced&w=240;384;768' {
const value: string;
export default value;
}
declare module '*.jpg?enhanced&w=256;416;832' {
const value: string;
export default value;
}
declare module '*.jpeg?enhanced' {
const value: string;
export default value;
}
declare module '*.png?enhanced' {
const value: string;
export default value;
}
declare module '*.webp?enhanced' {
const value: string;
export default value;
}
declare module '*.avif?enhanced' {
const value: string;
export default value;
}
declare module '*.svx' {
import type { Component } from 'svelte';
export const metadata: {
title?: string;
description?: string;
publishedAt?: string;
updatedAt?: string;
author?: string;
};
const component: Component<Record<string, never>>;
export default component;
}