/**
* Copyright Super iPaaS Integration LLC, an IBM Company 2024
*/
export type ProjectFileMetaData =  {
    projects: Projects;
};

export type Projects = {
    [key: string]: Project;
}

export type Project = {
    description: string;
    tags: string[];
}