jabb-astro-components
Version:
UI Components for web development
24 lines (22 loc) • 448 B
TypeScript
export {};
declare global {
/**
* comment
*/
namespace Testimony {
/**
* @param img
* @param responsive
* @param alt
* @param text
* @param author
*/
export interface Testimony1 {
img?: string;
responsive?: string;
alt: string;
text: string;
author: string;
}
}
}