Skip to content
This repository has been archived by the owner on Jan 29, 2019. It is now read-only.

Commit

Permalink
refactor: rename things to 'drivers' where applicable
Browse files Browse the repository at this point in the history
BREAKING CHANGE: component prop `fileSizeBaseInBinary` renamed to `useBinarySizeBase`
BREAKING CHANGE: component prop `adapterOptions` renamed to `driverOptions`
BREAKING CHANGE: component prop `uploadAdapter` renamed to `driver`
  • Loading branch information
alexsasharegan committed Mar 27, 2018
1 parent 586a0fe commit 3b0858b
Show file tree
Hide file tree
Showing 10 changed files with 1,372 additions and 154 deletions.
16 changes: 8 additions & 8 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { PluginObject } from "vue";
import { VueTransmit } from "./src/index";
import {
XHRUploadAdapter,
XHRDriver,
ParamNameStyle,
XHRUploadOptions,
XHRDriverOptions,
UploadGroup,
} from "./src/upload-adapters/xhr";
import {
UploadAdapterConstructor,
UploadAdapterInterface,
DriverConstructor,
DriverInterface,
UploadErr,
UploadResult,
} from "./src/core/interfaces";
Expand All @@ -30,12 +30,12 @@ const VueTransmitPlugin: PluginObject<undefined> = {
export {
VueTransmitPlugin,
VueTransmit,
XHRUploadAdapter,
XHRDriver,
ParamNameStyle,
XHRUploadOptions,
XHRDriverOptions,
UploadGroup,
UploadAdapterConstructor,
UploadAdapterInterface,
DriverConstructor,
DriverInterface,
UploadErr,
UploadResult,
Dimensions,
Expand Down
Loading

0 comments on commit 3b0858b

Please sign in to comment.