devscard/src/types/main-section.ts
Konrad Szwarc af7e6c285d
Add PDF CV generation script (#156)
Co-authored-by: Szymon Kin <68154191+hoolek77@users.noreply.github.com>
2023-01-18 18:49:47 +01:00

18 lines
391 B
TypeScript

import type { Detail, PdfDetail, Photo, SectionConfig, Social, Tag } from './common';
export interface MainSection {
image: Photo;
fullName: string;
role: string;
details: Detail[];
pdfDetails?: PdfDetail[];
description: string;
tags: Tag[];
action: {
label: string;
url: string;
downloadedFileName?: string;
};
socials: Social[];
config: SectionConfig;
}