@greenmice/ngx-cesium
Version:
Angular library for working with Cesium.
13 lines (12 loc) • 365 B
TypeScript
import { HtmlPrimitive } from '../primitives';
export declare class HtmlCollection {
private _collection;
get length(): number;
get(index: number): HtmlPrimitive;
add(options: any): HtmlPrimitive;
remove(html: HtmlPrimitive): boolean;
update(): void;
removeAll(): void;
contains(html: HtmlPrimitive): boolean;
destroy(): void;
}