import { Color } from '@ionic/core'; /** * Loader configuration object. * @type {ContentLoaderMetadata} * @property size - The spinner size. * @property color - The spinner color. * @property text - The loading text (optional). * @property name - The spinner name (optional). */ export interface ContentLoaderMetadata { color: Color; size: 'small' | 'medium' | 'large'; name: 'circular' | 'crescent' | 'dots' | 'lines-sharp'; text: string; }