import { IMapData, IMapDataPropertiesDefinition } from "./IMapData"; import { IMaterialAbstractData, IMaterialAbstractDataPropertiesGeneric } from "./IMaterialAbstractData"; export type IMaterialLambertDataProperties = Partial>; export type IMaterialLambertDataPropertiesDefinition = Partial>; export interface IMaterialLambertData extends IMaterialLambertDataPropertiesGeneric, IMaterialAbstractData { clone(): IMaterialLambertData; copy(source: IMaterialLambertData): void; } interface IMaterialLambertDataPropertiesGeneric extends IMaterialAbstractDataPropertiesGeneric { displacementBias: number; displacementMap?: T; displacementScale: number; specularMap?: T; envMap?: string | string[]; reflectivity: number; } export {}; //# sourceMappingURL=IMaterialLambertData.d.ts.map