astro-ghostcms/.pnpm-store/v3/files/ef/c69749bf62c2ed7a6572d2989a6...

12 lines
437 B
Plaintext

import type { PluginContext } from 'rollup';
import { z } from 'zod';
export declare function createImage(pluginContext: PluginContext, entryFilePath: string): () => z.ZodEffects<z.ZodString, z.ZodNever | {
ASTRO_ASSET: string;
src: string;
width: number;
height: number;
format: "jpeg" | "jpg" | "png" | "tiff" | "webp" | "gif" | "svg" | "avif";
orientation?: number | undefined;
fsPath: string;
}, string>;