studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
30 lines (29 loc) • 765 B
TypeScript
import type { AvailableIcons } from 'studiocms:ui/icons';
export declare const ratingIcons: {
good: AvailableIcons;
'needs-improvement': AvailableIcons;
poor: AvailableIcons;
};
export declare const ratingText: {
good: string;
'needs-improvement': string;
poor: string;
};
export declare const ratingCardClasses: {
good: string;
'needs-improvement': string;
poor: string;
};
export declare const webVitalsMetricFormatters: {
CLS: (v: number) => string;
FCP: (v: number) => string;
FID: (v: number) => string;
LCP: (v: number) => string;
TTFB: (v: number) => string;
INP: (v: number) => string;
};
export declare const barSegments: {
good: string;
'needs-improvement': string;
poor: string;
};