jabb-astro-components
Version:
UI Components for web development
31 lines (29 loc) • 659 B
TypeScript
export {};
declare global {
namespace Authors {
/**
*
*/
type information = {
name: string;
mail: string;
profile: string;
img: string;
alt: string;
};
/**
*@param dateStamp - "2025-01-01T14:30:00Z"
*/
export interface author {
author: information;
dateStamp: string;
date: string;
size?: number;
rss?: {
email?: string;
wa?: string;
ig?: string;
};
}
}
}