/** 3D 打印材料 */ import { Base } from '../../utils'; import { D3MaterialType } from './D3MaterialType'; export declare class D3Material extends Base { /** 名称 */ name: string; /** 材料类型 */ materialType: D3MaterialType; /** 描述 */ desc: string; case: string; /** 密度 */ density: number; tags: string[]; color: string; colorCode: string; /** 优点 */ merit: string; /** 缺点 */ defect: string; /** 应用描述 */ scenarios: string; /** 材料特性 */ character: string; images: string[]; avatar: string; attr: Record; constructor(props?: D3Material); }