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