kura
Version:
The FileSystem API abstraction library.
21 lines (17 loc) • 414 B
text/typescript
import { Event } from "./FileSystemIndex";
export interface IndexOptions {
logicalDelete?: boolean;
noCache?: boolean;
}
export interface ContentsCacheOptions {
capacity?: number;
limitSize?: number;
}
export interface FileSystemOptions {
contentsCache?: boolean;
contentsCacheOptions?: ContentsCacheOptions;
event?: Event;
index?: boolean;
indexOptions?: IndexOptions;
verbose?: boolean;
}