vue-cesium
Version:
Vue 3.x components for CesiumJS.
11 lines (10 loc) • 377 B
TypeScript
export default class BaseMaterialProperty {
options: any;
_definitionChanged: Cesium.Event<(...args: any[]) => void>;
constructor(options?: {});
get isConstant(): boolean;
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
getType(parameter: any): any;
getValue(context: any, defaultValue?: {}): {};
equals(other: any): boolean;
}