studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
14 lines (13 loc) • 395 B
TypeScript
import type { ImageMetadata } from 'astro';
interface ValidImage {
readonly name: string;
readonly label: string;
readonly format: 'local' | 'web';
readonly light: ImageMetadata | null;
readonly dark: ImageMetadata | null;
}
/**
* The valid images that can be used as a background for the StudioCMS Logo.
*/
declare const validImages: ValidImage[];
export { validImages };