export interface File {
    fileName: string;
    content?: string;
}
export interface FilePath {
    absolutePath: string;
    relativePath: string;
}
