UNPKG

kura-expo-fs

Version:

The FileSystem API abstraction library, Expo Filesystem Plugin

10 lines 628 B
import { AbstractDirectoryEntry, DirectoryEntry, FileEntry, FileSystemObject, FileSystemParams } from "kura"; import { ExpoFsAccessor } from "./ExpoFsAccessor"; import { ExpoFsFileEntry } from "./ExpoFsFileEntry"; export declare class ExpoFsDirectoryEntry extends AbstractDirectoryEntry<ExpoFsAccessor> { constructor(params: FileSystemParams<ExpoFsAccessor>); toDirectoryEntry(obj: FileSystemObject): DirectoryEntry; protected createEntry(obj: FileSystemObject): ExpoFsFileEntry | ExpoFsDirectoryEntry; protected toFileEntry(obj: FileSystemObject): FileEntry; } //# sourceMappingURL=ExpoFsDirectoryEntry.d.ts.map