mirror of https://github.com/sveltejs/svelte
feat(site-2): Accessibility (#8579)
* Push * Push * Fix Contents order * Skip link to left sidemenu * Add text class * use top-nav slot * Improve imagetools * Fix aria-label * Bump site-kitpull/8593/head
parent
d652ddbbd0
commit
bb0d34bbd0
@ -0,0 +1,13 @@
|
||||
interface ImageToolsPictureData {
|
||||
sources: Record<'avif' | 'webp' | 'png', { src: string; w: number }[]>;
|
||||
img: {
|
||||
src: string;
|
||||
w: number;
|
||||
h: number;
|
||||
};
|
||||
}
|
||||
|
||||
declare module '*?big-image' {
|
||||
const value: ImageToolsPictureData;
|
||||
export default value;
|
||||
}
|
Loading…
Reference in new issue