astro-tips
Version:
🎨 Beautiful, customizable tip and notice blocks for Astro - 16 built-in styles with auto dark mode support and built-in compression
22 lines • 462 B
TypeScript
export interface TipStyle {
border?: string;
light?: {
background?: string;
};
dark?: {
background?: string;
};
}
export interface TipConfig {
icon: string;
style?: TipStyle;
}
export interface AstroTipsConfig {
[key: string]: TipConfig;
}
export interface AstroTipsOptions {
minifyCSS?: boolean;
minifyJS?: boolean;
[key: string]: TipConfig | boolean | undefined;
}
//# sourceMappingURL=types.d.ts.map