Import edge for database storage

interface ImportEdge {
    fromPath: string;
    importType: string;
    importedNames: string[];
    toPath: string;
}

Properties

fromPath: string
importType: string
importedNames: string[]
toPath: string