angular-cesium
Version:
Angular library for working with Cesium.
12 lines (11 loc) • 344 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;
}