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