import { IUpload } from "../../interface"; import { ConstructorType } from "../../type"; export default class Upload implements IUpload { cost: ConstructorType; methodName: string; constructor({ cost, methodName }?: { cost?: typeof Upload | undefined; methodName?: string | undefined; }); }