UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

14 lines (13 loc) 435 B
import { ResultType } from '../common/data-type'; declare class SelectionController { private apiClassName; private selections; private obj; constructor(obj: any); Add(objects: Array<any>): Promise<ResultType>; Get(): Promise<Array<any>>; Remove(objects: Array<any>): Promise<ResultType>; Clear(): Promise<ResultType>; Draw(): Promise<ResultType>; } export default SelectionController;