denwa-web-shared
Version:
A shared library for Next.js App Router projects containing reusable components, hooks, schemas, and utilities.
15 lines (14 loc) • 353 B
TypeScript
export interface PictureData {
image1x: string;
image2x: string;
image1xWebp: string;
image2xWebp: string;
image1xAvif: string;
image2xAvif: string;
mobileImage1x: string;
mobileImage2x: string;
mobileImage1xWebp: string;
mobileImage2xWebp: string;
mobileImage1xAvif: string;
mobileImage2xAvif: string;
}