capacitor-advanced-file-manager
Version:
Advanced file manager plugin for Capacitor with comprehensive file system operations including browse, create, edit, delete, move, copy, and search files and directories.
10 lines (7 loc) • 296 B
text/typescript
import { registerPlugin } from '@capacitor/core';
import type { FileSearchPlugin } from './definitions';
const FileSearch = registerPlugin<FileSearchPlugin>('FileSearch', {
web: () => import('./web').then(m => new m.FileSearchWeb()),
});
export * from './definitions';
export { FileSearch };