@uppy/core
Version:
Core module for the extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:
18 lines • 517 B
TypeScript
import { vi } from 'vitest';
import UIPlugin from '../UIPlugin.js';
import type Uppy from '../Uppy.js';
type mock = ReturnType<typeof vi.fn>;
export default class TestSelector1 extends UIPlugin<any, any, any> {
name: string;
mocks: {
run: mock;
update: mock;
uninstall: mock;
};
constructor(uppy: Uppy<any, any>, opts?: any);
run(results: any): Promise<string>;
update(state: any): void;
uninstall(): void;
}
export {};
//# sourceMappingURL=acquirerPlugin1.d.ts.map