mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 00:32:35 +10:00
feat: additional work sections
This commit is contained in:
@ -125,7 +125,22 @@ export type ListItem =
|
||||
| WorkExperience
|
||||
| Custom;
|
||||
|
||||
export type SectionType = 'basic' | 'custom';
|
||||
export type SectionType =
|
||||
| 'basic'
|
||||
| 'location'
|
||||
| 'profiles'
|
||||
| 'education'
|
||||
| 'awards'
|
||||
| 'certifications'
|
||||
| 'publications'
|
||||
| 'skills'
|
||||
| 'languages'
|
||||
| 'interests'
|
||||
| 'volunteer'
|
||||
| 'projects'
|
||||
| 'references'
|
||||
| 'custom'
|
||||
| 'work';
|
||||
|
||||
export type SectionPath = `sections.${string}`;
|
||||
|
||||
@ -136,4 +151,5 @@ export type Section = {
|
||||
columns: number;
|
||||
visible: boolean;
|
||||
items: ListItem[];
|
||||
isDuplicated: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user