/** @description Basic structure for a resource to download */
export interface ResourceDownload {
    href?: string;
    data?: string;
}
