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