UNPKG

astro

Version:

Astro is a modern site builder with web best practices, performance, and DX front-of-mind.

6 lines (5 loc) 238 B
import type { ImageMetadata } from '../types.js'; export type SvgRenderMode = 'inline' | 'sprite'; export declare function makeSvgComponent(meta: ImageMetadata, contents: Buffer | string, options?: { mode?: SvgRenderMode; }): string;