import {IUpload} from "../../interface" import {ConstructorType} from "../../type" export default class Upload implements IUpload{ public cost: ConstructorType public methodName: string constructor({cost = Upload, methodName = ''} = {}){ this.cost = cost this.methodName = methodName } }