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