UNPKG

eip-components-web

Version:
21 lines 674 B
import type { DocumentNode } from 'graphql'; export declare const cmsRequest: <Data>({ query, variables, }: { query: DocumentNode; variables: { [key: string]: unknown; }; }) => Promise<Data>; export declare const imageAttributes = "\n responsiveImage {\n srcSet\n webpSrcSet\n sizes\n src\n aspectRatio\n alt\n title\n base64\n }\n"; export type ImageAttribute = { responsiveImage: { srcSet: string; webpSrcSet: string; sizes: string; src: string; aspectRatio: number; alt: string; title: string; base64: string; }; }; //# sourceMappingURL=datocms.d.ts.map