/** * Elrest eDesign Runtime IPC Typescript Model Filesystem * * @copyright 2024 Elrest AutomationsSysteme GMBH */ import { Directory } from './Directory'; import { Entry } from './Entry'; import { EntryType } from './EntryType'; import { File } from './File'; export declare const DIRECTORY_SEPARATOR = "\\"; export { Directory, Entry, EntryType, File, };